MallBizOrderItemDao.java 529 Bytes
package com.diligrp.cashier.mall.dao;


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

public interface MallBizOrderItemDao extends MybatisMapperSupport {
    int deleteByPrimaryKey(Long id);

    int insert(MallBizOrderItem record);

    int insertSelective(MallBizOrderItem record);

    MallBizOrderItem selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizOrderItem record);

    int updateByPrimaryKey(MallBizOrderItem record);
}