Andru
2023-12-26 20c86767e4adeea95a131c8f5f8f7d29a67f83f7
提交 | 用户 | 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 }