1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.ycl.smoke.dto;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Builder;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
|
| @Data
| @Builder
| @EqualsAndHashCode(callSuper = false)
| public class DataIntimeParamChildDto {
| /**
| * 否 筛选组织(Param内)
| */
| @JsonProperty("Owner")
| private String Owner;
| /**
| * 筛选状态(Param内)
| */
| @JsonProperty("Status")
| private String Status;
| /**
| * 监测点审核状态(Param内)
| */
| @JsonProperty("StatusOfRecord")
| private String StatusOfRecord;
| }
|
|