1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.dsh.other.model;
|
| import com.dsh.other.entity.TStoreOtherConfigTrue;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author zhibing.pu
| * @Date 2023/12/15 18:32
| */
| @Data
| public class TStoreOtherVo {
| private Integer id;
|
| private String name;
|
| private Integer storeId;
|
| private Integer sort;
| /**
| * 1开启 2关闭
| */
| private Integer state;
|
| private List<TStoreOtherConfigTrue> list;
| }
|
|