对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.ContractDetailInfo; |
| | | import com.gk.firework.Domain.Vo.ProductVo; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface ContractDetailService extends IService<ContractDetailInfo> { |
| | | |
| | | void deleteByOrder(String ordercode); |
| | | |
| | | List<ProductVo> selectByOrder(String ordercode); |
| | | |
| | | void updateChangNum(String ordercode,String productCode, Integer returnNum); |
| | | |
| | | List<ContractDetailInfo> selectAllDetailAtSpecificDate(String productCode, Date producedate); |
| | | } |