fwq
2022-11-08 350c9e309f58745f544e7ce13650d2b8d9d2006f
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.channel;
F 2
3 import java.util.List;
4
5
6 public class ChannelListDt {
7
8   private List<ChannelDt> list;
9
10     public List<ChannelDt> getList() {
11         return list;
12     }
13
14     public void setList(List<ChannelDt> list) {
15         this.list = list;
16     }
17 }