MallBizOrderAddressDao.java 605 Bytes
package com.diligrp.cashier.mall.dao;

import com.diligrp.cashier.mall.model.MallBizOrderAddress;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;

/**
 * MallBizOrderAddressDao
 *
 * @author dengwei
 */
public interface MallBizOrderAddressDao extends MybatisMapperSupport {
    int deleteByPrimaryKey(Long id);

    int insert(MallBizOrderAddress record);

    int insertSelective(MallBizOrderAddress record);

    MallBizOrderAddress selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizOrderAddress record);

    int updateByPrimaryKey(MallBizOrderAddress record);
}