| | |
| | | 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; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 设备台账id |
| | | */ |
| | | // @Excel(name = "设备台账id") |
| | | private Long deviceLeaderId; |
| | | |
| | | /** |
| | | * 工序名称 |
| | |
| | | * 工资定额 |
| | | */ |
| | | @Excel(name = "工资定额") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private BigDecimal salaryQuota; |
| | | |
| | | @ApiModelProperty("类型 区分是计时还是计件 0 计时 1计件") |
| | | private Long type; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty(value ="是否质检") |
| | | private Boolean isQuality; |
| | | |
| | | |
| | | } |