| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.approve.utils.StartAndEndDateDto; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | */ |
| | | @Data |
| | | @TableName("labor_issue") |
| | | @ApiModel |
| | | @Schema |
| | | public class LaborIssue extends StartAndEndDateDto { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Long id; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("1-已领取劳保数量 2-未领取劳保数量 3-超时已领取劳保数量 4-超时未领取劳保数量") |
| | | @Schema(description = "1-已领取劳保数量 2-未领取劳保数量 3-超时已领取劳保数量 4-超时未领取劳保数量") |
| | | private Integer status; |
| | | |
| | | @TableField(exist = false) |
| | |
| | | /** |
| | | * 部门名称 |
| | | */ |
| | | @ApiModelProperty("部门名称") |
| | | @Schema(description = "部门名称") |
| | | @Excel(name = "部门名称") |
| | | @TableField(exist = false) |
| | | private String deptName; |
| | |
| | | /** |
| | | * 劳保单号 |
| | | */ |
| | | @ApiModelProperty("劳保单号") |
| | | @Schema(description = "劳保单号") |
| | | @Excel(name = "劳保单号") |
| | | private String orderNo; |
| | | |
| | | /** |
| | | * 员工id |
| | | */ |
| | | @ApiModelProperty("员工id") |
| | | @Schema(description = "员工id") |
| | | private Long staffId; |
| | | |
| | | /** |
| | | * 员工名称 |
| | | */ |
| | | @ApiModelProperty("员工名称") |
| | | @Schema(description = "员工名称") |
| | | @Excel(name = "员工名称") |
| | | @TableField(exist = false) |
| | | private String staffName; |
| | |
| | | /** |
| | | * 员工编号 |
| | | */ |
| | | @ApiModelProperty("员工编号") |
| | | @Schema(description = "员工编号") |
| | | @Excel(name = "员工编号") |
| | | @TableField(exist = false) |
| | | private String staffNo; |
| | |
| | | /** |
| | | * 劳保类型-字典 |
| | | */ |
| | | @ApiModelProperty("劳保类型-字典") |
| | | @Schema(description = "劳保类型-字典") |
| | | private String dictType; |
| | | |
| | | /** |
| | | * 劳保类型 |
| | | */ |
| | | @ApiModelProperty("劳保类型") |
| | | @Schema(description = "劳保类型") |
| | | @Excel(name = "劳保类型") |
| | | @TableField(exist = false) |
| | | private String dictTypeName; |
| | |
| | | /** |
| | | * 防具名称-字典 |
| | | */ |
| | | @ApiModelProperty("防具名称-字典") |
| | | @Schema(description = "防具名称-字典") |
| | | private String dictId; |
| | | |
| | | /** |
| | | * 防具名称 |
| | | */ |
| | | @ApiModelProperty("防具名称") |
| | | @Schema(description = "防具名称") |
| | | @Excel(name = "防具名称") |
| | | @TableField(exist = false) |
| | | private String dictName; |
| | |
| | | /** |
| | | * 领用数量 |
| | | */ |
| | | @ApiModelProperty("领用数量") |
| | | @Schema(description = "领用数量") |
| | | @Excel(name = "领用数量") |
| | | private Long num; |
| | | |
| | | /** |
| | | * 进厂日期 |
| | | */ |
| | | @ApiModelProperty("进厂日期") |
| | | @Schema(description = "进厂日期") |
| | | @Excel(name = "进厂日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | |
| | | /** |
| | | * 发放日期 |
| | | */ |
| | | @ApiModelProperty("发放日期") |
| | | @Schema(description = "发放日期") |
| | | @Excel(name = "发放日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | |
| | | /** |
| | | * 领用日期 |
| | | */ |
| | | @ApiModelProperty("领用日期") |
| | | @Schema(description = "领用日期") |
| | | @Excel(name = "领用日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |