MallBizOrderDao.java 704 Bytes
package com.diligrp.cashier.mall.dao;


import com.diligrp.cashier.mall.model.MallBizOrder;
import com.diligrp.cashier.shared.mybatis.MybatisMapperSupport;
import org.apache.ibatis.annotations.Param;

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

    int insert(MallBizOrder record);

    int insertSelective(MallBizOrder record);

    MallBizOrder selectByPrimaryKey(Long id);

    int updateByPrimaryKeySelective(MallBizOrder record);

    int updateByPrimaryKey(MallBizOrder record);

    int update(MallBizOrder mallBizOrder);

    MallBizOrder getByOrderId(@Param("orderId") String orderId);
}