1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.webmanage.vo;
|
| import com.webmanage.entity.PointsRule;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @ClassName PointsRuleVO
| * @Description TODO
| * @Author wangxudong
| * @Date 2025/8/14 21:05
| * @Version 1.0
| **/
| @Data
| public class PointsRuleVO {
| private String category;
| List<PointsRule> pointsRules;
| private Integer rlueSort;
| }
|
|