| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.ManufactureOrder; |
| | | import com.yuanchu.mom.pojo.dto.ManufactureOrderDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectAllManord(Page<Object> page, String downTime, String delTime, String customerCode, Integer type); |
| | | |
| | | /** |
| | | * 查看排产详情 |
| | | * @param manOrdId |
| | | * @return |
| | | */ |
| | | ManufactureOrderDto sePros(Integer manOrdId); |
| | | |
| | | /** |
| | | * 下达 |
| | | * @param manOrdId |
| | | */ |
| | | void down(Integer manOrdId); |
| | | } |
| | | |