wujian
2024-05-13 6a462fcca2e65cc3a38ed79522d966306756341f
提交 | 用户 | 时间
2c7661 1 package com.jcdm.main.restful.qingYan.doman;
A 2
3 import lombok.Data;
4
5 import java.util.List;
6
7 @Data
8 public class ParentVO {
9
10     private String siteCode;
11     private String recordId;
12     private String stationCode;
13     private String productNum;
14     private String totalResult;
15     private List<ChildVO> checkList;
16
17 }