| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.dk.oauth.model.pojo.integral;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import com.baomidou.mybatisplus.annotation.*;
- import java.io.Serializable;
- import com.dk.common.infrastructure.annotaiton.ExportTitle;
- import com.dk.common.infrastructure.handler.*;
- import com.dk.common.model.pojo.PageInfo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.AllArgsConstructor;
- import lombok.NoArgsConstructor;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import com.alibaba.fastjson.JSONObject;
- import java.util.List;
- /**
- * 积分策略
- */
- @Data
- @AllArgsConstructor
- @NoArgsConstructor
- @EqualsAndHashCode(callSuper = true)
- @Accessors(chain = true)
- @ExportTitle("积分策略")
- @TableName(value = "t_mst_integral_tactic", autoResultMap = true, schema = "dkic_a")
- @ApiModel(value="实体类:积分策略", description="表名:t_mst_integral_tactic")
- public class IntegralTactic extends PageInfo<IntegralTactic> implements Serializable {
- /*
- * 数据库字段
- */
- /**
- * 策略ID
- */
- // @TableId(value = "tactic_id", type = IdType.AUTO)
- @ApiModelProperty(value = "策略ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String tacticId;
- /**
- * 注册积分
- */
- @Excel(name = "注册积分")
- @ApiModelProperty(value = "注册积分")
- private Integer regIntegral;
- /**
- * 签到积分
- */
- @Excel(name = "签到积分")
- @ApiModelProperty(value = "签到积分")
- private Integer signIntegral;
- /**
- * 15天签到积分 (连续签到15天)
- */
- @Excel(name = "15天签到积分 (连续签到15天)")
- @ApiModelProperty(value = "15天签到积分 (连续签到15天)")
- private Integer fifteenIntegral;
- /**
- * 分享积分
- */
- @Excel(name = "分享积分")
- @ApiModelProperty(value = "分享积分")
- private Integer shareIntegral;
- /**
- * 分享注册积分
- */
- @Excel(name = "分享注册积分")
- @ApiModelProperty(value = "分享注册积分")
- private Integer shareRegIntegral;
- /**
- * 每日签到次数
- */
- @Excel(name = "每日签到次数")
- @ApiModelProperty(value = "每日签到次数")
- private Integer signDayNum;
- /**
- * 每日分享次数
- */
- @Excel(name = "每日分享次数")
- @ApiModelProperty(value = "每日分享次数")
- private Integer shareDayNum;
- /*
- * 相关属性
- * @TableField(exist = false)
- */
- /*
- * 关联属性 + 查询条件
- * @TableField(exist = false)
- */
- private static final long serialVersionUID = 1L;
- }
|