| | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | |
| | | private String id; |
| | | |
| | | //工序或工步id |
| | | @TableField(value = "process_step_id") |
| | | private String processStepId; |
| | | @TableField(value = "attribution_id") |
| | | private String attributionId; |
| | | |
| | | //工序/工步 1工序 2工步 |
| | | @TableField(value = "type") |
| | | private Integer type; |
| | | //工序/工步 5工序 6工步 |
| | | @TableField(value = "attribution_type") |
| | | private Integer attributionType; |
| | | |
| | | //车间id |
| | | @TableField(value = "production_id") |
| | | @Dict(dictTable = "mdc_production", dicCode = "id", dicText = "production_name") |
| | | private String productionId; |
| | | |
| | | //设备类型 |
| | | @TableField(value = "device_type") |
| | | private Integer deviceType; |
| | | //设备类 |
| | | @TableField(value = "device_management_id") |
| | | @Dict(dictTable = "nc_device_management", dicCode = "id", dicText = "device_management_name") |
| | | private String deviceManagementId; |
| | | |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | |
| | | @TableField(value = "delete_flag", select = false) |
| | | private Integer deleteFlag = 0; |
| | | |
| | | private transient List<MdcEquipment> equipmentList; |
| | | @Dict(dictTable = "nc_device_management", dicCode = "id", dicText = "device_management_code") |
| | | private transient String deviceManagementCode; |
| | | |
| | | } |