1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.iotechn.unimall.data.properties;
|
| import com.dobbinsoft.fw.support.annotation.DynamicConfigProperties;
| import com.iotechn.unimall.data.constant.DynamicConst;
| import lombok.Data;
|
| /**
| * Description:
| * User: rize
| * Date: 2020/8/7
| * Time: 10:35
| */
| @Data
| @DynamicConfigProperties(prefix = DynamicConst.ADVERT_CONFIG_PREFIX)
| public class UnimallAdvertProperties {
|
| /**
| * 首页TOP N 个数
| */
| private Integer topSalesNum;
|
| }
|
|