fwq
2023-05-22 5b359f715f6de6c9440256e0c95878033ad81253
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.shop;
F 2
3
4 import java.util.List;
5
6 /**
7  * 同步门店列表
8  *
9  * @author fwq
10  */
11 public class ShopListDt {
12     private List<ShopDt> list;
13
14     public List<ShopDt> getList() {
15         return list;
16     }
17
18     public void setList(List<ShopDt> list) {
19         this.list = list;
20     }
21 }