fwq
2024-04-23 bdd39fac56c367b36d6c41ef2cd5c9f35926013f
提交 | 用户 | 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 }