chenjiahe
2024-03-15 a8ccd0eb5591990bf8ef66bf9e3256e6aa4bcfbe
提交 | 用户 | 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 }