1
2
3
4
5
6
7
8
9
10
11
12
| package org.jeecg.modules.arj.vo;
|
| import org.jeecg.modules.arj.entity.Head;
| import org.jeecg.modules.arj.entity.ShengchanTj;
| import lombok.Data;
|
| import java.util.List;
| @Data
| public class ShengchanTJVo {
| private Head head ;
| private List<ShengchanTj> shengchanTjList ;
| }
|
|