package cn.stylefeng.guns.modular.om.productionOrdeInfo.service;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.entity.ProductionOrdeInfo;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.params.ProductionOrdeInfoParam;
|
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.result.ProductionOrdeInfoResult;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 生产工单 服务类
|
* </p>
|
*
|
* @author cl
|
* @since 2022-10-25
|
*/
|
public interface ProductionOrdeInfoService extends IService<ProductionOrdeInfo> {
|
|
/**
|
* 新增
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
void add(ProductionOrdeInfoParam param);
|
|
/**
|
* 删除
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
void delete(ProductionOrdeInfoParam param);
|
|
/**
|
* 更新
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
void update(ProductionOrdeInfoParam param);
|
|
/**
|
* 查询单条数据,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
ProductionOrdeInfoResult findBySpec(ProductionOrdeInfoParam param);
|
|
/**
|
* 查询列表,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
List<ProductionOrdeInfoResult> findListBySpec(ProductionOrdeInfoParam param);
|
|
/**
|
* 查询分页数据,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-25
|
*/
|
LayuiPageInfo findPageBySpec(ProductionOrdeInfoParam param);
|
|
List lineFinishQty();
|
|
void saveOrderBatchInfo(ProductionOrdeInfoParam productionOrdeInfoParam);
|
|
HashMap getOrderWeek();
|
|
Integer getPlanQtyByDate(String str);
|
|
Integer getActualQtyByDate(String str);
|
|
List<ProductionOrdeInfoResult> getListMonth();
|
|
List<ProductionOrdeInfoResult> getColumnarDate();
|
|
List<ProductionOrdeInfoResult> orderDescListFive();
|
}
|