| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.Order; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class ReportingWork { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增id |
| | |
| | | //班次 |
| | | private String classes; |
| | | //班组编号 |
| | | private String teamsgroupsId; |
| | | private String teamsGroupsId; |
| | | //班组名称 |
| | | private String teamsgroupsName; |
| | | private String teamsGroupsName; |
| | | //报工状态 |
| | | private Integer reportingWorkState; |
| | | //审核人 |
| | |
| | | //备注 |
| | | private String notes; |
| | | //质检员 |
| | | private String qualityInsPector; |
| | | private String qualityInspector; |
| | | //包装方式 |
| | | private String packagingMethod; |
| | | //报工时间 |
| | | private LocalDate reportingWorkTime; |
| | | private LocalDateTime reportingWorkTime; |
| | | //审核时间 |
| | | private LocalDate examineTime; |
| | | //质检时间 |
| | |
| | | //修改时间 |
| | | private LocalDate updateTime; |
| | | |
| | | //创建者 |
| | | private String creatorId ; |
| | | private String creator ; |
| | | |
| | | |
| | | @TableField(select = false,exist= false) |
| | | private Order order; |
| | | //外键流程卡表 |
| | | @TableField(select = false,exist= false) |
| | | private FlowCard flowCard; |
| | | // @TableField(select = false,exist= false) |
| | | // private ReportingWork reportingWork; |
| | | @TableField(select = false,exist= false) |
| | | private ReportingWorkDetail reportingWorkDetail; |
| | | } |