Преглед изворни кода

王子文 班组管理 - 每日生产指令

wangggziwen пре 3 година
родитељ
комит
2fdd172128

+ 108 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/controller/TShiftDailyInstDetailController.java

@@ -0,0 +1,108 @@
+package com.ruoyi.project.shiftmgr.controller;
+
+import java.util.Date;
+import java.util.List;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.framework.aspectj.lang.annotation.Log;
+import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstDetail;
+import com.ruoyi.project.shiftmgr.service.ITShiftDailyInstDetailService;
+import com.ruoyi.framework.web.controller.BaseController;
+import com.ruoyi.framework.web.domain.AjaxResult;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.framework.web.page.TableDataInfo;
+
+/**
+ * 每日生产指令Controller
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+@RestController
+@RequestMapping("/shiftmgr/detail")
+public class TShiftDailyInstDetailController extends BaseController
+{
+    @Autowired
+    private ITShiftDailyInstDetailService tShiftDailyInstDetailService;
+
+    /**
+     * 查询每日生产指令列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        startPage();
+        List<TShiftDailyInstDetail> list = tShiftDailyInstDetailService.selectTShiftDailyInstDetailList(tShiftDailyInstDetail);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出每日生产指令列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:export')")
+    @Log(title = "每日生产指令", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        List<TShiftDailyInstDetail> list = tShiftDailyInstDetailService.selectTShiftDailyInstDetailList(tShiftDailyInstDetail);
+        ExcelUtil<TShiftDailyInstDetail> util = new ExcelUtil<TShiftDailyInstDetail>(TShiftDailyInstDetail.class);
+        return util.exportExcel(list, "detail");
+    }
+
+    /**
+     * 获取每日生产指令详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tShiftDailyInstDetailService.selectTShiftDailyInstDetailById(id));
+    }
+
+    /**
+     * 新增每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:add')")
+    @Log(title = "每日生产指令", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        tShiftDailyInstDetail.setCreaterCode(getUserId());
+        tShiftDailyInstDetail.setCreatedate(new Date());
+        return toAjax(tShiftDailyInstDetailService.insertTShiftDailyInstDetail(tShiftDailyInstDetail));
+    }
+
+    /**
+     * 修改每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:edit')")
+    @Log(title = "每日生产指令", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        tShiftDailyInstDetail.setUpdaterCode(getUserId());
+        tShiftDailyInstDetail.setUpdatedate(new Date());
+        return toAjax(tShiftDailyInstDetailService.updateTShiftDailyInstDetail(tShiftDailyInstDetail));
+    }
+
+    /**
+     * 删除每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:detail:remove')")
+    @Log(title = "每日生产指令", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tShiftDailyInstDetailService.deleteTShiftDailyInstDetailByIds(ids));
+    }
+}

+ 108 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/controller/TShiftDailyInstructionController.java

@@ -0,0 +1,108 @@
+package com.ruoyi.project.shiftmgr.controller;
+
+import java.util.Date;
+import java.util.List;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.framework.aspectj.lang.annotation.Log;
+import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstruction;
+import com.ruoyi.project.shiftmgr.service.ITShiftDailyInstructionService;
+import com.ruoyi.framework.web.controller.BaseController;
+import com.ruoyi.framework.web.domain.AjaxResult;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.framework.web.page.TableDataInfo;
+
+/**
+ * 每日生产指令Controller
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+@RestController
+@RequestMapping("/shiftmgr/instruction")
+public class TShiftDailyInstructionController extends BaseController
+{
+    @Autowired
+    private ITShiftDailyInstructionService tShiftDailyInstructionService;
+
+    /**
+     * 查询每日生产指令列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        startPage();
+        List<TShiftDailyInstruction> list = tShiftDailyInstructionService.selectTShiftDailyInstructionList(tShiftDailyInstruction);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出每日生产指令列表
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:export')")
+    @Log(title = "每日生产指令", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        List<TShiftDailyInstruction> list = tShiftDailyInstructionService.selectTShiftDailyInstructionList(tShiftDailyInstruction);
+        ExcelUtil<TShiftDailyInstruction> util = new ExcelUtil<TShiftDailyInstruction>(TShiftDailyInstruction.class);
+        return util.exportExcel(list, "instruction");
+    }
+
+    /**
+     * 获取每日生产指令详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tShiftDailyInstructionService.selectTShiftDailyInstructionById(id));
+    }
+
+    /**
+     * 新增每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:add')")
+    @Log(title = "每日生产指令", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        tShiftDailyInstruction.setCreaterCode(getUserId());
+        tShiftDailyInstruction.setCreatedate(new Date());
+        return toAjax(tShiftDailyInstructionService.insertTShiftDailyInstruction(tShiftDailyInstruction));
+    }
+
+    /**
+     * 修改每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:edit')")
+    @Log(title = "每日生产指令", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        tShiftDailyInstruction.setUpdaterCode(getUserId());
+        tShiftDailyInstruction.setUpdatedate(new Date());
+        return toAjax(tShiftDailyInstructionService.updateTShiftDailyInstruction(tShiftDailyInstruction));
+    }
+
+    /**
+     * 删除每日生产指令
+     */
+    @PreAuthorize("@ss.hasPermi('shiftmgr:instruction:remove')")
+    @Log(title = "每日生产指令", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tShiftDailyInstructionService.deleteTShiftDailyInstructionByIds(ids));
+    }
+}

+ 180 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/domain/TShiftDailyInstDetail.java

@@ -0,0 +1,180 @@
+package com.ruoyi.project.shiftmgr.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import com.ruoyi.framework.web.domain.BaseEntity;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+
+/**
+ * 每日生产指令对象 t_shift_daily_inst_detail
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public class TShiftDailyInstDetail extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** $column.columnComment */
+    private Long id;
+
+    /** 父级ID,关联每日生产指令表主键ID */
+    @Excel(name = "父级ID,关联每日生产指令表主键ID")
+    private Long parentId;
+
+    /** 当日岗位主要工作/目前操作状况 */
+    @Excel(name = "当日岗位主要工作/目前操作状况")
+    private String postWork;
+
+    /** 岗位注意事项 */
+    @Excel(name = "岗位注意事项")
+    private String postNote;
+
+    /** 须执行完成事项 */
+    @Excel(name = "须执行完成事项")
+    private String postTask;
+
+    /** 状态,0:正常;2:删除 */
+    private Long delFlag;
+
+    /** 创建人 */
+    @Excel(name = "创建人")
+    private Long createrCode;
+
+    /** 创建时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date createdate;
+
+    /** 修改人 */
+    @Excel(name = "修改人")
+    private Long updaterCode;
+
+    /** 修改时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date updatedate;
+
+    /** 部门编号 */
+    @Excel(name = "部门编号")
+    private Long deptId;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setParentId(Long parentId)
+    {
+        this.parentId = parentId;
+    }
+
+    public Long getParentId()
+    {
+        return parentId;
+    }
+    public void setPostWork(String postWork)
+    {
+        this.postWork = postWork;
+    }
+
+    public String getPostWork()
+    {
+        return postWork;
+    }
+    public void setPostNote(String postNote)
+    {
+        this.postNote = postNote;
+    }
+
+    public String getPostNote()
+    {
+        return postNote;
+    }
+    public void setPostTask(String postTask)
+    {
+        this.postTask = postTask;
+    }
+
+    public String getPostTask()
+    {
+        return postTask;
+    }
+    public void setDelFlag(Long delFlag)
+    {
+        this.delFlag = delFlag;
+    }
+
+    public Long getDelFlag()
+    {
+        return delFlag;
+    }
+    public void setCreaterCode(Long createrCode)
+    {
+        this.createrCode = createrCode;
+    }
+
+    public Long getCreaterCode()
+    {
+        return createrCode;
+    }
+    public void setCreatedate(Date createdate)
+    {
+        this.createdate = createdate;
+    }
+
+    public Date getCreatedate()
+    {
+        return createdate;
+    }
+    public void setUpdaterCode(Long updaterCode)
+    {
+        this.updaterCode = updaterCode;
+    }
+
+    public Long getUpdaterCode()
+    {
+        return updaterCode;
+    }
+    public void setUpdatedate(Date updatedate)
+    {
+        this.updatedate = updatedate;
+    }
+
+    public Date getUpdatedate()
+    {
+        return updatedate;
+    }
+    public void setDeptId(Long deptId)
+    {
+        this.deptId = deptId;
+    }
+
+    public Long getDeptId()
+    {
+        return deptId;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("parentId", getParentId())
+            .append("postWork", getPostWork())
+            .append("postNote", getPostNote())
+            .append("postTask", getPostTask())
+            .append("delFlag", getDelFlag())
+            .append("createrCode", getCreaterCode())
+            .append("createdate", getCreatedate())
+            .append("updaterCode", getUpdaterCode())
+            .append("updatedate", getUpdatedate())
+            .append("deptId", getDeptId())
+            .toString();
+    }
+}

+ 209 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/domain/TShiftDailyInstruction.java

@@ -0,0 +1,209 @@
+package com.ruoyi.project.shiftmgr.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import com.ruoyi.framework.web.domain.BaseEntity;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+
+/**
+ * 每日生产指令对象 t_shift_daily_instruction
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public class TShiftDailyInstruction extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** $column.columnComment */
+    private Long id;
+
+    /** 标题 */
+    @Excel(name = "标题")
+    private String title;
+
+    /** 发布人,关联T_STAFFMGR表主键ID */
+    @Excel(name = "发布人,关联T_STAFFMGR表主键ID")
+    private String publisher;
+
+    /** 负责人,关联T_STAFFMGR表主键ID */
+    @Excel(name = "负责人,关联T_STAFFMGR表主键ID")
+    private String personInCharge;
+
+    /** 时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date publishDate;
+
+    /** 优先级 */
+    @Excel(name = "优先级")
+    private Long priority;
+
+    /** 日常工作注意事项 */
+    @Excel(name = "日常工作注意事项")
+    private String note;
+
+    /** 状态,0:正常;2:删除 */
+    private Long delFlag;
+
+    /** 创建人 */
+    @Excel(name = "创建人")
+    private Long createrCode;
+
+    /** 创建时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date createdate;
+
+    /** 修改人 */
+    @Excel(name = "修改人")
+    private Long updaterCode;
+
+    /** 修改时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
+    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date updatedate;
+
+    /** 部门编号 */
+    @Excel(name = "部门编号")
+    private Long deptId;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setTitle(String title)
+    {
+        this.title = title;
+    }
+
+    public String getTitle()
+    {
+        return title;
+    }
+    public void setPublisher(String publisher)
+    {
+        this.publisher = publisher;
+    }
+
+    public String getPublisher()
+    {
+        return publisher;
+    }
+    public void setPersonInCharge(String personInCharge)
+    {
+        this.personInCharge = personInCharge;
+    }
+
+    public String getPersonInCharge()
+    {
+        return personInCharge;
+    }
+    public void setPublishDate(Date publishDate)
+    {
+        this.publishDate = publishDate;
+    }
+
+    public Date getPublishDate()
+    {
+        return publishDate;
+    }
+    public void setPriority(Long priority)
+    {
+        this.priority = priority;
+    }
+
+    public Long getPriority()
+    {
+        return priority;
+    }
+    public void setNote(String note)
+    {
+        this.note = note;
+    }
+
+    public String getNote()
+    {
+        return note;
+    }
+    public void setDelFlag(Long delFlag)
+    {
+        this.delFlag = delFlag;
+    }
+
+    public Long getDelFlag()
+    {
+        return delFlag;
+    }
+    public void setCreaterCode(Long createrCode)
+    {
+        this.createrCode = createrCode;
+    }
+
+    public Long getCreaterCode()
+    {
+        return createrCode;
+    }
+    public void setCreatedate(Date createdate)
+    {
+        this.createdate = createdate;
+    }
+
+    public Date getCreatedate()
+    {
+        return createdate;
+    }
+    public void setUpdaterCode(Long updaterCode)
+    {
+        this.updaterCode = updaterCode;
+    }
+
+    public Long getUpdaterCode()
+    {
+        return updaterCode;
+    }
+    public void setUpdatedate(Date updatedate)
+    {
+        this.updatedate = updatedate;
+    }
+
+    public Date getUpdatedate()
+    {
+        return updatedate;
+    }
+    public void setDeptId(Long deptId)
+    {
+        this.deptId = deptId;
+    }
+
+    public Long getDeptId()
+    {
+        return deptId;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("title", getTitle())
+            .append("publisher", getPublisher())
+            .append("personInCharge", getPersonInCharge())
+            .append("publishDate", getPublishDate())
+            .append("priority", getPriority())
+            .append("note", getNote())
+            .append("delFlag", getDelFlag())
+            .append("createrCode", getCreaterCode())
+            .append("createdate", getCreatedate())
+            .append("updaterCode", getUpdaterCode())
+            .append("updatedate", getUpdatedate())
+            .append("deptId", getDeptId())
+            .toString();
+    }
+}

+ 63 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/mapper/TShiftDailyInstDetailMapper.java

@@ -0,0 +1,63 @@
+package com.ruoyi.project.shiftmgr.mapper;
+
+import java.util.List;
+import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstDetail;
+
+/**
+ * 每日生产指令Mapper接口
+ * 
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public interface TShiftDailyInstDetailMapper 
+{
+    /**
+     * 查询每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    public TShiftDailyInstDetail selectTShiftDailyInstDetailById(Long id);
+
+    /**
+     * 查询每日生产指令列表
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 每日生产指令集合
+     */
+    @DataScope(deptAlias = "d")
+    public List<TShiftDailyInstDetail> selectTShiftDailyInstDetailList(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 新增每日生产指令
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    public int insertTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 修改每日生产指令
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    public int updateTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 删除每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstDetailById(Long id);
+
+    /**
+     * 批量删除每日生产指令
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstDetailByIds(Long[] ids);
+}

+ 63 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/mapper/TShiftDailyInstructionMapper.java

@@ -0,0 +1,63 @@
+package com.ruoyi.project.shiftmgr.mapper;
+
+import java.util.List;
+import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstruction;
+
+/**
+ * 每日生产指令Mapper接口
+ * 
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public interface TShiftDailyInstructionMapper 
+{
+    /**
+     * 查询每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    public TShiftDailyInstruction selectTShiftDailyInstructionById(Long id);
+
+    /**
+     * 查询每日生产指令列表
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 每日生产指令集合
+     */
+    @DataScope(deptAlias = "d")
+    public List<TShiftDailyInstruction> selectTShiftDailyInstructionList(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 新增每日生产指令
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    public int insertTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 修改每日生产指令
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    public int updateTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 删除每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstructionById(Long id);
+
+    /**
+     * 批量删除每日生产指令
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstructionByIds(Long[] ids);
+}

+ 61 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/ITShiftDailyInstDetailService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.project.shiftmgr.service;
+
+import java.util.List;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstDetail;
+
+/**
+ * 每日生产指令Service接口
+ * 
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public interface ITShiftDailyInstDetailService 
+{
+    /**
+     * 查询每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    public TShiftDailyInstDetail selectTShiftDailyInstDetailById(Long id);
+
+    /**
+     * 查询每日生产指令列表
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 每日生产指令集合
+     */
+    public List<TShiftDailyInstDetail> selectTShiftDailyInstDetailList(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 新增每日生产指令
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    public int insertTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 修改每日生产指令
+     * 
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    public int updateTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail);
+
+    /**
+     * 批量删除每日生产指令
+     * 
+     * @param ids 需要删除的每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstDetailByIds(Long[] ids);
+
+    /**
+     * 删除每日生产指令信息
+     * 
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstDetailById(Long id);
+}

+ 61 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/ITShiftDailyInstructionService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.project.shiftmgr.service;
+
+import java.util.List;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstruction;
+
+/**
+ * 每日生产指令Service接口
+ * 
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+public interface ITShiftDailyInstructionService 
+{
+    /**
+     * 查询每日生产指令
+     * 
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    public TShiftDailyInstruction selectTShiftDailyInstructionById(Long id);
+
+    /**
+     * 查询每日生产指令列表
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 每日生产指令集合
+     */
+    public List<TShiftDailyInstruction> selectTShiftDailyInstructionList(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 新增每日生产指令
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    public int insertTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 修改每日生产指令
+     * 
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    public int updateTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction);
+
+    /**
+     * 批量删除每日生产指令
+     * 
+     * @param ids 需要删除的每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstructionByIds(Long[] ids);
+
+    /**
+     * 删除每日生产指令信息
+     * 
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    public int deleteTShiftDailyInstructionById(Long id);
+}

+ 93 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/impl/TShiftDailyInstDetailServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.project.shiftmgr.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.project.shiftmgr.mapper.TShiftDailyInstDetailMapper;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstDetail;
+import com.ruoyi.project.shiftmgr.service.ITShiftDailyInstDetailService;
+
+/**
+ * 每日生产指令Service业务层处理
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+@Service
+public class TShiftDailyInstDetailServiceImpl implements ITShiftDailyInstDetailService
+{
+    @Autowired
+    private TShiftDailyInstDetailMapper tShiftDailyInstDetailMapper;
+
+    /**
+     * 查询每日生产指令
+     *
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    @Override
+    public TShiftDailyInstDetail selectTShiftDailyInstDetailById(Long id)
+    {
+        return tShiftDailyInstDetailMapper.selectTShiftDailyInstDetailById(id);
+    }
+
+    /**
+     * 查询每日生产指令列表
+     *
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 每日生产指令
+     */
+    @Override
+    public List<TShiftDailyInstDetail> selectTShiftDailyInstDetailList(TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        return tShiftDailyInstDetailMapper.selectTShiftDailyInstDetailList(tShiftDailyInstDetail);
+    }
+
+    /**
+     * 新增每日生产指令
+     *
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    @Override
+    public int insertTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        return tShiftDailyInstDetailMapper.insertTShiftDailyInstDetail(tShiftDailyInstDetail);
+    }
+
+    /**
+     * 修改每日生产指令
+     *
+     * @param tShiftDailyInstDetail 每日生产指令
+     * @return 结果
+     */
+    @Override
+    public int updateTShiftDailyInstDetail(TShiftDailyInstDetail tShiftDailyInstDetail)
+    {
+        return tShiftDailyInstDetailMapper.updateTShiftDailyInstDetail(tShiftDailyInstDetail);
+    }
+
+    /**
+     * 批量删除每日生产指令
+     *
+     * @param ids 需要删除的每日生产指令ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftDailyInstDetailByIds(Long[] ids)
+    {
+        return tShiftDailyInstDetailMapper.deleteTShiftDailyInstDetailByIds(ids);
+    }
+
+    /**
+     * 删除每日生产指令信息
+     *
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftDailyInstDetailById(Long id)
+    {
+        return tShiftDailyInstDetailMapper.deleteTShiftDailyInstDetailById(id);
+    }
+}

+ 93 - 0
master/src/main/java/com/ruoyi/project/shiftmgr/service/impl/TShiftDailyInstructionServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.project.shiftmgr.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.project.shiftmgr.mapper.TShiftDailyInstructionMapper;
+import com.ruoyi.project.shiftmgr.domain.TShiftDailyInstruction;
+import com.ruoyi.project.shiftmgr.service.ITShiftDailyInstructionService;
+
+/**
+ * 每日生产指令Service业务层处理
+ *
+ * @author ruoyi
+ * @date 2022-08-03
+ */
+@Service
+public class TShiftDailyInstructionServiceImpl implements ITShiftDailyInstructionService
+{
+    @Autowired
+    private TShiftDailyInstructionMapper tShiftDailyInstructionMapper;
+
+    /**
+     * 查询每日生产指令
+     *
+     * @param id 每日生产指令ID
+     * @return 每日生产指令
+     */
+    @Override
+    public TShiftDailyInstruction selectTShiftDailyInstructionById(Long id)
+    {
+        return tShiftDailyInstructionMapper.selectTShiftDailyInstructionById(id);
+    }
+
+    /**
+     * 查询每日生产指令列表
+     *
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 每日生产指令
+     */
+    @Override
+    public List<TShiftDailyInstruction> selectTShiftDailyInstructionList(TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        return tShiftDailyInstructionMapper.selectTShiftDailyInstructionList(tShiftDailyInstruction);
+    }
+
+    /**
+     * 新增每日生产指令
+     *
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    @Override
+    public int insertTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        return tShiftDailyInstructionMapper.insertTShiftDailyInstruction(tShiftDailyInstruction);
+    }
+
+    /**
+     * 修改每日生产指令
+     *
+     * @param tShiftDailyInstruction 每日生产指令
+     * @return 结果
+     */
+    @Override
+    public int updateTShiftDailyInstruction(TShiftDailyInstruction tShiftDailyInstruction)
+    {
+        return tShiftDailyInstructionMapper.updateTShiftDailyInstruction(tShiftDailyInstruction);
+    }
+
+    /**
+     * 批量删除每日生产指令
+     *
+     * @param ids 需要删除的每日生产指令ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftDailyInstructionByIds(Long[] ids)
+    {
+        return tShiftDailyInstructionMapper.deleteTShiftDailyInstructionByIds(ids);
+    }
+
+    /**
+     * 删除每日生产指令信息
+     *
+     * @param id 每日生产指令ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTShiftDailyInstructionById(Long id)
+    {
+        return tShiftDailyInstructionMapper.deleteTShiftDailyInstructionById(id);
+    }
+}

+ 111 - 0
master/src/main/resources/mybatis/shiftmgr/TShiftDailyInstDetailMapper.xml

@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.project.shiftmgr.mapper.TShiftDailyInstDetailMapper">
+    
+    <resultMap type="TShiftDailyInstDetail" id="TShiftDailyInstDetailResult">
+        <result property="id"    column="id"    />
+        <result property="parentId"    column="parent_id"    />
+        <result property="postWork"    column="post_work"    />
+        <result property="postNote"    column="post_note"    />
+        <result property="postTask"    column="post_task"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createrCode"    column="creater_code"    />
+        <result property="createdate"    column="createdate"    />
+        <result property="updaterCode"    column="updater_code"    />
+        <result property="updatedate"    column="updatedate"    />
+        <result property="deptId"    column="dept_id"    />
+        <result property="deptName" column="dept_name" />
+    </resultMap>
+
+    <sql id="selectTShiftDailyInstDetailVo">
+        select d.id, d.parent_id, d.post_work, d.post_note, d.post_task, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id ,s.dept_name from t_shift_daily_inst_detail d
+      left join sys_dept s on s.dept_id = d.dept_id
+    </sql>
+
+    <select id="selectTShiftDailyInstDetailList" parameterType="TShiftDailyInstDetail" resultMap="TShiftDailyInstDetailResult">
+        <include refid="selectTShiftDailyInstDetailVo"/>
+        <where>  
+            <if test="parentId != null "> and parent_id = #{parentId}</if>
+            <if test="postWork != null  and postWork != ''"> and post_work = #{postWork}</if>
+            <if test="postNote != null  and postNote != ''"> and post_note = #{postNote}</if>
+            <if test="postTask != null  and postTask != ''"> and post_task = #{postTask}</if>
+            <if test="createrCode != null "> and creater_code = #{createrCode}</if>
+            <if test="createdate != null "> and createdate = #{createdate}</if>
+            <if test="updaterCode != null "> and updater_code = #{updaterCode}</if>
+            <if test="updatedate != null "> and updatedate = #{updatedate}</if>
+            <if test="deptId != null "> and dept_id = #{deptId}</if>
+            and d.del_flag = 0
+        </where>
+        <!-- 数据范围过滤 -->
+        ${params.dataScope}
+    </select>
+    
+    <select id="selectTShiftDailyInstDetailById" parameterType="Long" resultMap="TShiftDailyInstDetailResult">
+        <include refid="selectTShiftDailyInstDetailVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTShiftDailyInstDetail" parameterType="TShiftDailyInstDetail">
+        <selectKey keyProperty="id" resultType="long" order="BEFORE">
+            SELECT SEQ_T_SHIFT_DAILY_INST_DETAIL.NEXTVAL as id FROM DUAL
+        </selectKey>
+        insert into t_shift_daily_inst_detail
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="parentId != null">parent_id,</if>
+            <if test="postWork != null">post_work,</if>
+            <if test="postNote != null">post_note,</if>
+            <if test="postTask != null">post_task,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createrCode != null">creater_code,</if>
+            <if test="createdate != null">createdate,</if>
+            <if test="updaterCode != null">updater_code,</if>
+            <if test="updatedate != null">updatedate,</if>
+            <if test="deptId != null">dept_id,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="parentId != null">#{parentId},</if>
+            <if test="postWork != null">#{postWork},</if>
+            <if test="postNote != null">#{postNote},</if>
+            <if test="postTask != null">#{postTask},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createrCode != null">#{createrCode},</if>
+            <if test="createdate != null">#{createdate},</if>
+            <if test="updaterCode != null">#{updaterCode},</if>
+            <if test="updatedate != null">#{updatedate},</if>
+            <if test="deptId != null">#{deptId},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTShiftDailyInstDetail" parameterType="TShiftDailyInstDetail">
+        update t_shift_daily_inst_detail
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="parentId != null">parent_id = #{parentId},</if>
+            <if test="postWork != null">post_work = #{postWork},</if>
+            <if test="postNote != null">post_note = #{postNote},</if>
+            <if test="postTask != null">post_task = #{postTask},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createrCode != null">creater_code = #{createrCode},</if>
+            <if test="createdate != null">createdate = #{createdate},</if>
+            <if test="updaterCode != null">updater_code = #{updaterCode},</if>
+            <if test="updatedate != null">updatedate = #{updatedate},</if>
+            <if test="deptId != null">dept_id = #{deptId},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <update id="deleteTShiftDailyInstDetailById" parameterType="Long">
+        update t_shift_daily_inst_detail set del_flag = 2 where id = #{id}
+    </update>
+
+    <update id="deleteTShiftDailyInstDetailByIds" parameterType="String">
+        update t_shift_daily_inst_detail set del_flag = 2 where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </update>
+    
+</mapper>

+ 121 - 0
master/src/main/resources/mybatis/shiftmgr/TShiftDailyInstructionMapper.xml

@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.project.shiftmgr.mapper.TShiftDailyInstructionMapper">
+    
+    <resultMap type="TShiftDailyInstruction" id="TShiftDailyInstructionResult">
+        <result property="id"    column="id"    />
+        <result property="title"    column="title"    />
+        <result property="publisher"    column="publisher"    />
+        <result property="personInCharge"    column="person_in_charge"    />
+        <result property="publishDate"    column="publish_date"    />
+        <result property="priority"    column="priority"    />
+        <result property="note"    column="note"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createrCode"    column="creater_code"    />
+        <result property="createdate"    column="createdate"    />
+        <result property="updaterCode"    column="updater_code"    />
+        <result property="updatedate"    column="updatedate"    />
+        <result property="deptId"    column="dept_id"    />
+        <result property="deptName" column="dept_name" />
+    </resultMap>
+
+    <sql id="selectTShiftDailyInstructionVo">
+        select d.id, d.title, d.publisher, d.person_in_charge, d.publish_date, d.priority, d.note, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id ,s.dept_name from t_shift_daily_instruction d
+      left join sys_dept s on s.dept_id = d.dept_id
+    </sql>
+
+    <select id="selectTShiftDailyInstructionList" parameterType="TShiftDailyInstruction" resultMap="TShiftDailyInstructionResult">
+        <include refid="selectTShiftDailyInstructionVo"/>
+        <where>  
+            <if test="title != null  and title != ''"> and title = #{title}</if>
+            <if test="publisher != null  and publisher != ''"> and publisher = #{publisher}</if>
+            <if test="personInCharge != null  and personInCharge != ''"> and person_in_charge = #{personInCharge}</if>
+            <if test="publishDate != null "> and publish_date = #{publishDate}</if>
+            <if test="priority != null "> and priority = #{priority}</if>
+            <if test="note != null  and note != ''"> and note = #{note}</if>
+            <if test="createrCode != null "> and creater_code = #{createrCode}</if>
+            <if test="createdate != null "> and createdate = #{createdate}</if>
+            <if test="updaterCode != null "> and updater_code = #{updaterCode}</if>
+            <if test="updatedate != null "> and updatedate = #{updatedate}</if>
+            <if test="deptId != null "> and dept_id = #{deptId}</if>
+            and d.del_flag = 0
+        </where>
+        <!-- 数据范围过滤 -->
+        ${params.dataScope}
+    </select>
+    
+    <select id="selectTShiftDailyInstructionById" parameterType="Long" resultMap="TShiftDailyInstructionResult">
+        <include refid="selectTShiftDailyInstructionVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTShiftDailyInstruction" parameterType="TShiftDailyInstruction">
+        <selectKey keyProperty="id" resultType="long" order="BEFORE">
+            SELECT SEQ_T_SHIFT_DAILY_INSTRUCTION.NEXTVAL as id FROM DUAL
+        </selectKey>
+        insert into t_shift_daily_instruction
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="title != null">title,</if>
+            <if test="publisher != null">publisher,</if>
+            <if test="personInCharge != null">person_in_charge,</if>
+            <if test="publishDate != null">publish_date,</if>
+            <if test="priority != null">priority,</if>
+            <if test="note != null">note,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createrCode != null">creater_code,</if>
+            <if test="createdate != null">createdate,</if>
+            <if test="updaterCode != null">updater_code,</if>
+            <if test="updatedate != null">updatedate,</if>
+            <if test="deptId != null">dept_id,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="title != null">#{title},</if>
+            <if test="publisher != null">#{publisher},</if>
+            <if test="personInCharge != null">#{personInCharge},</if>
+            <if test="publishDate != null">#{publishDate},</if>
+            <if test="priority != null">#{priority},</if>
+            <if test="note != null">#{note},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createrCode != null">#{createrCode},</if>
+            <if test="createdate != null">#{createdate},</if>
+            <if test="updaterCode != null">#{updaterCode},</if>
+            <if test="updatedate != null">#{updatedate},</if>
+            <if test="deptId != null">#{deptId},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTShiftDailyInstruction" parameterType="TShiftDailyInstruction">
+        update t_shift_daily_instruction
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="title != null">title = #{title},</if>
+            <if test="publisher != null">publisher = #{publisher},</if>
+            <if test="personInCharge != null">person_in_charge = #{personInCharge},</if>
+            <if test="publishDate != null">publish_date = #{publishDate},</if>
+            <if test="priority != null">priority = #{priority},</if>
+            <if test="note != null">note = #{note},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createrCode != null">creater_code = #{createrCode},</if>
+            <if test="createdate != null">createdate = #{createdate},</if>
+            <if test="updaterCode != null">updater_code = #{updaterCode},</if>
+            <if test="updatedate != null">updatedate = #{updatedate},</if>
+            <if test="deptId != null">dept_id = #{deptId},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <update id="deleteTShiftDailyInstructionById" parameterType="Long">
+        update t_shift_daily_instruction set del_flag = 2 where id = #{id}
+    </update>
+
+    <update id="deleteTShiftDailyInstructionByIds" parameterType="String">
+        update t_shift_daily_instruction set del_flag = 2 where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </update>
+    
+</mapper>

+ 53 - 0
ui/src/api/shiftmgr/detail.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询每日生产指令列表
+export function listDetail(query) {
+  return request({
+    url: '/shiftmgr/detail/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询每日生产指令详细
+export function getDetail(id) {
+  return request({
+    url: '/shiftmgr/detail/' + id,
+    method: 'get'
+  })
+}
+
+// 新增每日生产指令
+export function addDetail(data) {
+  return request({
+    url: '/shiftmgr/detail',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改每日生产指令
+export function updateDetail(data) {
+  return request({
+    url: '/shiftmgr/detail',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除每日生产指令
+export function delDetail(id) {
+  return request({
+    url: '/shiftmgr/detail/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出每日生产指令
+export function exportDetail(query) {
+  return request({
+    url: '/shiftmgr/detail/export',
+    method: 'get',
+    params: query
+  })
+}

+ 53 - 0
ui/src/api/shiftmgr/instruction.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询每日生产指令列表
+export function listInstruction(query) {
+  return request({
+    url: '/shiftmgr/instruction/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询每日生产指令详细
+export function getInstruction(id) {
+  return request({
+    url: '/shiftmgr/instruction/' + id,
+    method: 'get'
+  })
+}
+
+// 新增每日生产指令
+export function addInstruction(data) {
+  return request({
+    url: '/shiftmgr/instruction',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改每日生产指令
+export function updateInstruction(data) {
+  return request({
+    url: '/shiftmgr/instruction',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除每日生产指令
+export function delInstruction(id) {
+  return request({
+    url: '/shiftmgr/instruction/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出每日生产指令
+export function exportInstruction(query) {
+  return request({
+    url: '/shiftmgr/instruction/export',
+    method: 'get',
+    params: query
+  })
+}

+ 542 - 0
ui/src/views/shiftmgr/productmgr/dailyinstruction/index.vue

@@ -0,0 +1,542 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="标题" prop="title">
+        <el-input
+          v-model="queryParams.title"
+          placeholder="请输入标题"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="发布人" prop="publisher">
+        <el-input
+          v-model="queryParams.publisher"
+          placeholder="请输入发布人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="负责人" prop="personInCharge">
+        <el-input
+          v-model="queryParams.personInCharge"
+          placeholder="请输入负责人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="时间" prop="publishDate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.publishDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="优先级" prop="priority">
+        <el-input
+          v-model="queryParams.priority"
+          placeholder="请输入优先级"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="日常工作注意事项" prop="note">
+        <el-input
+          v-model="queryParams.note"
+          placeholder="请输入日常工作注意事项"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="创建人" prop="createrCode">
+        <el-input
+          v-model="queryParams.createrCode"
+          placeholder="请输入创建人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="创建时间" prop="createdate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.createdate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择创建时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="修改人" prop="updaterCode">
+        <el-input
+          v-model="queryParams.updaterCode"
+          placeholder="请输入修改人"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="修改时间" prop="updatedate">
+        <el-date-picker clearable size="small" style="width: 200px"
+          v-model="queryParams.updatedate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="选择修改时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="部门编号" prop="deptId">
+        <el-input
+          v-model="queryParams.deptId"
+          placeholder="请输入部门编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['shiftmgr:instruction:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['shiftmgr:instruction:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['shiftmgr:instruction:remove']"
+        >删除</el-button>
+      </el-col>
+        <el-col :span="1.5">
+            <el-button
+                    type="info"
+                    icon="el-icon-upload2"
+                    size="mini"
+                    @click="handleImport"
+                    v-hasPermi="['shiftmgr:instruction:edit']"
+            >导入</el-button>
+        </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['shiftmgr:instruction:export']"
+        >导出</el-button>
+      </el-col>
+	  <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="instructionList" @selection-change="handleSelectionChange" :height="clientHeight" border>
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="标题" align="center" prop="title" :show-overflow-tooltip="true"/>
+      <el-table-column label="发布人" align="center" prop="publisher" :show-overflow-tooltip="true"/>
+      <el-table-column label="负责人" align="center" prop="personInCharge" :show-overflow-tooltip="true"/>
+      <el-table-column label="时间" align="center" prop="publishDate" width="100">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.publishDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="优先级" align="center" prop="priority" :show-overflow-tooltip="true"/>
+      <el-table-column label="日常工作注意事项" align="center" prop="note" :show-overflow-tooltip="true"/>
+      <el-table-column label="创建人" align="center" prop="createrCode" :show-overflow-tooltip="true"/>
+      <el-table-column label="创建时间" align="center" prop="createdate" width="100">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.createdate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="修改人" align="center" prop="updaterCode" :show-overflow-tooltip="true"/>
+      <el-table-column label="修改时间" align="center" prop="updatedate" width="100">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.updatedate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <!--<el-table-column label="部门编号" align="center" prop="deptId" :show-overflow-tooltip="true"/>-->
+      <el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['shiftmgr:instruction:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['shiftmgr:instruction:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改每日生产指令对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <!--<el-form-item label="部门编号" prop="id">-->
+          <!--<el-input v-model="form.id" placeholder="请输入部门编号" />-->
+        <!--</el-form-item>-->
+        <el-form-item label="标题" prop="title">
+          <el-input v-model="form.title" placeholder="请输入标题" />
+        </el-form-item>
+        <el-form-item label="发布人" prop="publisher">
+          <el-input v-model="form.publisher" placeholder="请输入发布人" />
+        </el-form-item>
+        <el-form-item label="负责人" prop="personInCharge">
+          <el-input v-model="form.personInCharge" placeholder="请输入负责人" />
+        </el-form-item>
+        <el-form-item label="时间" prop="publishDate">
+          <el-date-picker clearable size="small" style="width: 200px"
+            v-model="form.publishDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="选择时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="优先级" prop="priority">
+          <el-input v-model="form.priority" placeholder="请输入优先级" />
+        </el-form-item>
+        <el-form-item label="日常工作注意事项" prop="note">
+          <el-input v-model="form.note" placeholder="请输入日常工作注意事项" />
+        </el-form-item>
+        <!--<el-form-item label="状态" prop="delFlag">-->
+          <!--<el-input v-model="form.delFlag" placeholder="请输入状态" />-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="创建人" prop="createrCode">-->
+          <!--<el-input v-model="form.createrCode" placeholder="请输入创建人" />-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="创建时间" prop="createdate">-->
+          <!--<el-date-picker clearable size="small" style="width: 200px"-->
+            <!--v-model="form.createdate"-->
+            <!--type="date"-->
+            <!--value-format="yyyy-MM-dd"-->
+            <!--placeholder="选择创建时间">-->
+          <!--</el-date-picker>-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="修改人" prop="updaterCode">-->
+          <!--<el-input v-model="form.updaterCode" placeholder="请输入修改人" />-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="修改时间" prop="updatedate">-->
+          <!--<el-date-picker clearable size="small" style="width: 200px"-->
+            <!--v-model="form.updatedate"-->
+            <!--type="date"-->
+            <!--value-format="yyyy-MM-dd"-->
+            <!--placeholder="选择修改时间">-->
+          <!--</el-date-picker>-->
+        <!--</el-form-item>-->
+        <!--<el-form-item label="部门编号" prop="deptId">-->
+          <!--<el-input v-model="form.deptId" placeholder="请输入部门编号" />-->
+        <!--</el-form-item>-->
+          <!--<el-form-item label="归属部门" prop="deptId">-->
+              <!--<treeselect v-model="form.deptId" :options="deptOptions" :show-count="true" placeholder="请选择归属部门" />-->
+          <!--</el-form-item>-->
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+      <!-- 用户导入对话框 -->
+      <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
+          <el-upload
+                  ref="upload"
+                  :limit="1"
+                  accept=".xlsx, .xls"
+                  :headers="upload.headers"
+                  :action="upload.url + '?updateSupport=' + upload.updateSupport"
+                  :disabled="upload.isUploading"
+                  :on-progress="handleFileUploadProgress"
+                  :on-success="handleFileSuccess"
+                  :auto-upload="false"
+                  drag
+          >
+              <i class="el-icon-upload"></i>
+              <div class="el-upload__text">
+                  将文件拖到此处,或
+                  <em>点击上传</em>
+              </div>
+              <div class="el-upload__tip" slot="tip">
+                  <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
+                  <el-link type="info" style="font-size:12px" @click="importTemplate">下载模板</el-link>
+              </div>
+              <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
+          </el-upload>
+          <div slot="footer" class="dialog-footer">
+              <el-button type="primary" @click="submitFileForm">确 定</el-button>
+              <el-button @click="upload.open = false">取 消</el-button>
+          </div>
+      </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listInstruction, getInstruction, delInstruction, addInstruction, updateInstruction, exportInstruction, importTemplate} from "@/api/shiftmgr/instruction";
+import { treeselect } from "@/api/system/dept";
+import { getToken } from "@/utils/auth";
+import Treeselect from "@riophae/vue-treeselect";
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
+
+export default {
+  name: "Instruction",
+  components: { Treeselect },
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 每日生产指令表格数据
+      instructionList: [],
+      // 弹出层标题
+      title: "",
+      // 部门树选项
+      deptOptions: undefined,
+      clientHeight:300,
+      // 是否显示弹出层
+      open: false,
+        // 用户导入参数
+        upload: {
+            // 是否显示弹出层(用户导入)
+            open: false,
+            // 弹出层标题(用户导入)
+            title: "",
+            // 是否禁用上传
+            isUploading: false,
+            // 是否更新已经存在的用户数据
+            updateSupport: 0,
+            // 设置上传的请求头部
+            headers: { Authorization: "Bearer " + getToken() },
+            // 上传的地址
+            url: process.env.VUE_APP_BASE_API + "/shiftmgr/instruction/importData"
+        },
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 20,
+        title: null,
+        publisher: null,
+        personInCharge: null,
+        publishDate: null,
+        priority: null,
+        note: null,
+        createrCode: null,
+        createdate: null,
+        updaterCode: null,
+        updatedate: null,
+        deptId: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  watch: {
+        // 根据名称筛选部门树
+        deptName(val) {
+            this.$refs.tree.filter(val);
+        }
+   },
+  created() {
+      //设置表格高度对应屏幕高度
+      this.$nextTick(() => {
+          this.clientHeight = document.body.clientHeight -250
+      })
+    this.getList();
+    this.getTreeselect();
+  },
+  methods: {
+    /** 查询每日生产指令列表 */
+    getList() {
+      this.loading = true;
+      listInstruction(this.queryParams).then(response => {
+        this.instructionList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+     /** 查询部门下拉树结构 */
+     getTreeselect() {
+          treeselect().then(response => {
+              this.deptOptions = response.data;
+          });
+     },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        title: null,
+        publisher: null,
+        personInCharge: null,
+        publishDate: null,
+        priority: null,
+        note: null,
+        delFlag: null,
+        createrCode: null,
+        createdate: null,
+        updaterCode: null,
+        updatedate: null,
+        deptId: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加每日生产指令";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getInstruction(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改每日生产指令";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateInstruction(this.form).then(response => {
+              this.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addInstruction(this.form).then(response => {
+              this.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$confirm('是否确认删除?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return delInstruction(ids);
+        }).then(() => {
+          this.getList();
+          this.msgSuccess("删除成功");
+        })
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$confirm('是否确认导出所有每日生产指令数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return exportInstruction(queryParams);
+        }).then(response => {
+          this.download(response.msg);
+        })
+    },
+      /** 导入按钮操作 */
+      handleImport() {
+          this.upload.title = "用户导入";
+          this.upload.open = true;
+      },
+      /** 下载模板操作 */
+      importTemplate() {
+          importTemplate().then(response => {
+              this.download(response.msg);
+          });
+      },
+      // 文件上传中处理
+      handleFileUploadProgress(event, file, fileList) {
+          this.upload.isUploading = true;
+      },
+      // 文件上传成功处理
+      handleFileSuccess(response, file, fileList) {
+          this.upload.open = false;
+          this.upload.isUploading = false;
+          this.$refs.upload.clearFiles();
+          this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
+          this.getList();
+      },
+      // 提交上传文件
+      submitFileForm() {
+          this.$refs.upload.submit();
+      }
+  }
+};
+</script>