-
admin
2024-04-29 2c7661d0bca739a9b403cdd420d2b91eb77470e6
提交 | 用户 | 时间
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 }