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;
|
| /**
| * @author c.y.b
| * @Title:
| * @Package
| * @Description:
| * @date 2025/8/1413:56
| */
|
| @Data
| public class PointsRuleVO {
| private String category;
| private List<PointsRule> pointsRules;
| }
|
|