|
@@ -0,0 +1,45 @@
|
|
|
+package cn.ezhizao.project.business.service.impl;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+import cn.ezhizao.project.business.domain.BizProductionPlanDetail;
|
|
|
+import cn.ezhizao.project.business.mapper.BizProductionPlanDetailMapper;
|
|
|
+import cn.ezhizao.project.business.service.IBizProductionPlanDetailService;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 生产计划明细Service业务层处理
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ * @date 2023-11-04
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class BizProductionPlanDetailServiceImpl extends ServiceImpl<BizProductionPlanDetailMapper, BizProductionPlanDetail> implements IBizProductionPlanDetailService
|
|
|
+{
|
|
|
+ @Resource
|
|
|
+ private BizProductionPlanDetailMapper bizProductionPlanDetailMapper;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询生产计划明细列表
|
|
|
+ *
|
|
|
+ * @param data 生产计划明细
|
|
|
+ * @return 生产计划明细
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public List<BizProductionPlanDetail> getList(BizProductionPlanDetail data)
|
|
|
+ {
|
|
|
+ return bizProductionPlanDetailMapper.getList(data);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 物理删除
|
|
|
+ * @param bizProductionPlanDetail
|
|
|
+ * @return 删除结果
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public int physicalDelete(BizProductionPlanDetail bizProductionPlanDetail){ return bizProductionPlanDetailMapper.physicalDelete(bizProductionPlanDetail); };
|
|
|
+
|
|
|
+}
|