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

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

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);
}