yang_shj
2 years ago
5 changed files with 70 additions and 45 deletions
@ -0,0 +1,42 @@ |
|||||||
|
package com.hnac.hzims.operational.census.vo; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
||||||
|
import com.fasterxml.jackson.databind.ser.std.NullSerializer; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author ysj |
||||||
|
* @date 2023/03/14 15:01:17 |
||||||
|
* @version 4.0.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DutyGroupVo { |
||||||
|
|
||||||
|
@ApiModelProperty("区域Id") |
||||||
|
private Long deptId; |
||||||
|
|
||||||
|
@ApiModelProperty("区域名称") |
||||||
|
private String areaName; |
||||||
|
|
||||||
|
@ApiModelProperty("工作票数量") |
||||||
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||||
|
private Integer work; |
||||||
|
|
||||||
|
@ApiModelProperty("操作票数量") |
||||||
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||||
|
private Integer operateoperate; |
||||||
|
|
||||||
|
@ApiModelProperty("巡检任务数量") |
||||||
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||||
|
private Integer inspect; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("消缺数量") |
||||||
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||||
|
private Integer defect; |
||||||
|
|
||||||
|
@ApiModelProperty("定期工作数量") |
||||||
|
@JsonSerialize(nullsUsing = NullSerializer.class) |
||||||
|
private Integer regularly; |
||||||
|
} |
@ -1,25 +0,0 @@ |
|||||||
package com.hnac.hzims.operational.census.vo; |
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
||||||
import com.fasterxml.jackson.databind.ser.std.NullSerializer; |
|
||||||
import io.swagger.annotations.ApiModelProperty; |
|
||||||
import lombok.Data; |
|
||||||
|
|
||||||
/** |
|
||||||
* @author ysj |
|
||||||
* @date 2023/03/14 15:01:17 |
|
||||||
* @version 4.0.0 |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
public class TicketGroupVo { |
|
||||||
|
|
||||||
@ApiModelProperty("区域Id") |
|
||||||
private Long deptId; |
|
||||||
|
|
||||||
@ApiModelProperty("区域名称") |
|
||||||
private String areaName; |
|
||||||
|
|
||||||
@ApiModelProperty("票据数量") |
|
||||||
@JsonSerialize(nullsUsing = NullSerializer.class) |
|
||||||
private Integer count; |
|
||||||
} |
|
Loading…
Reference in new issue