admin
2024-07-09 4e83fa344f6cba81412fb354e7f32a88a8f34fde
提交 | 用户 | 时间
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 }