| | |
| | | */ |
| | | package org.sxkj.gd.workorder.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiModelProperty(value = "状态:0待签收、1拒绝签收、2已撤回、3待审核、4审核驳回、5审核通过、6待验收、7拒绝验收、8验收通过") |
| | | private String taskStatus; |
| | | |
| | | /** |
| | | * 拒绝原因(审核拒绝时必填) |
| | | */ |
| | | @ApiModelProperty(value = "拒绝原因(审核拒绝时必填)") |
| | | private String rejectReason; |
| | | |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | |
| | | @ApiModelProperty("主键id") |
| | | private Long id; |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("创建人") |
| | | @ApiModelProperty(value = "创建人") |
| | | private Long createUser; |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("创建部门") |
| | | @ApiModelProperty(value = "创建部门") |
| | | private Long createDept; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty("创建时间") |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("更新人") |
| | | @ApiModelProperty(value = "更新人") |
| | | private Long updateUser; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty("更新时间") |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty("业务状态") |
| | | @ApiModelProperty(value = "状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("是否已删除") |
| | | @ApiModelProperty(value = "逻辑删除") |
| | | private Integer isDeleted; |
| | | |
| | | } |