-
admin
2024-05-10 1c84aef7b3d88ce9f2ac5d3173f892a1cd727800
提交 | 用户 | 时间
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 }