| | |
| | | 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; |
| | | |
| | |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 状态:0-停用,1-启用 |
| | | */ |
| | | private Boolean status; |
| | | |
| | | |
| | | /** |
| | | * 工资定额 |
| | | */ |
| | | @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; |
| | | |
| | | |
| | | } |