对比新文件 |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.firework.Domain.ContractOrderInfo; |
| | | import com.gk.firework.Domain.Vo.ContractOrderVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Repository |
| | | public interface ContractOrderInfoMapper extends BaseMapper<ContractOrderInfo> { |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | |
| | | int insertSelective(ContractOrderInfo record); |
| | | |
| | | ContractOrderInfo selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(ContractOrderInfo record); |
| | | |
| | | List<ContractOrderVo> selectDataGrid(Page<ContractOrderVo> page, Map<String, Object> condition); |
| | | |
| | | List<ContractOrderInfo> selectByStatus(@Param("status") String status,@Param("now") String now); |
| | | |
| | | ContractOrderInfo selectByOrderCode(@Param("ordercode") String ordercode); |
| | | |
| | | int selectCountToday(); |
| | | |
| | | void updateReturnStatus(String ordercode, String returnstatus); |
| | | } |