| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | |
| | | @TableName("product_process") |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @ApiModel(value = "productProcess", description = "工序表") |
| | | public class ProductProcess implements Serializable { |
| | | |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | |
| | | /** |
| | | * 产品规格ID |
| | | */ |
| | | private Long productModelId; |
| | | |
| | | /** |
| | | * 工序名称 |
| | | */ |
| | | @Excel(name = "部件名称") |
| | | private String name; |
| | | |
| | | /** |
| | | * 工序编号 |
| | | */ |
| | | @Excel(name = "部件编号") |
| | | private String no; |
| | | |
| | | |
| | | /** |
| | | * 工资定额 |
| | | */ |
| | | @Excel(name = "工资定额") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private BigDecimal salaryQuota; |
| | | |
| | |
| | | @ApiModelProperty("类型1-加工,2-刮板冷芯制作、3-管路组对、4-罐体连接及调试,5-测试打压,6-其他") |
| | | private Integer type; |
| | | |
| | | @TableField(exist = false) |
| | | @Excel(name = "部件类型") |
| | | private String ProductProcessType; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @ApiModelProperty("计划人员ID") |
| | | private Long plannerId; |
| | | |
| | | @ApiModelProperty("计划人员姓名") |
| | | private String plannerName; |
| | | |
| | | } |