fwq
2023-04-14 75c8cff752e6c2fb32eb5fe1f65eb485a9dc50bb
提交 | 用户 | 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 }