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 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; }