| | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | private String id; |
| | | |
| | | //工序或工步id |
| | | @TableField(value = "process_step_id") |
| | | private String processStepId; |
| | | @Excel(name = "所属业务id", width = 15) |
| | | @TableField(value = "attribution_id") |
| | | private String attributionId; |
| | | |
| | | //工序/工步 1工序 2工步 |
| | | @TableField(value = "type") |
| | | private Integer type; |
| | | //工序/工步 5工序 6工步 |
| | | @Excel(name = "所属类型", width = 15) |
| | | @TableField(value = "attribution_type") |
| | | private Integer attributionType; |
| | | |
| | | //刀具名称 |
| | | @Excel(name = "刀具名称", width = 15) |
| | | @TableField(value = "cutter_name") |
| | | private String cutterName; |
| | | |
| | | //刀具编号 |
| | | @Excel(name = "刀具编号", width = 15) |
| | | @TableField(value = "cutter_code") |
| | | private String cutterCode; |
| | | |
| | | //刀具类型 |
| | | @Excel(name = "刀具类型", width = 15,dicCode = "cutter_type") |
| | | @TableField(value = "cutter_type") |
| | | @Dict(dicCode = "cutter_type") |
| | | private String cutterType; |
| | | |
| | | //额定寿命 |
| | | @Excel(name = "额定寿命", width = 15) |
| | | @TableField(value = "lifetime") |
| | | private String lifetime; |
| | | |
| | | //刀位 |
| | | @TableField(value = "cutter_position") |
| | | @Excel(name = "刀位", width = 15) |
| | | @TableField(value = "cutter_spacing") |
| | | private String cutterSpacing; |
| | | |
| | | //数量 |
| | | @Excel(name = "数量", width = 15) |
| | | @TableField(value = "quantity") |
| | | private Integer quantity; |
| | | |
| | | //描述 |
| | | @Excel(name = "描述", width = 15) |
| | | @TableField(value = "description") |
| | | private String description; |
| | | |