huanghongfa
2021-07-22 02f18587bd8860b305e2c688e20465be166bb48c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.panzhihua.common.model.vos.integral;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 积分功能
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-28 16:08
 **/
@Data
@ApiModel("》运营 》积分 》积分功能")
public class ComOpsAccRuleFuncVO {
 
    @ApiModelProperty("自增id")
    private Long id;
 
    @ApiModelProperty("积分功能描述")
    private String desc;
 
}