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;
/**
*
* 生产工单 服务类
*
*
* @author cl
* @since 2022-10-25
*/
public interface ProductionOrdeInfoService extends IService {
/**
* 新增
*
* @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 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 getListMonth();
List getColumnarDate();
}