| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.core.enums.PointStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "积分") |
| | | private Integer points; |
| | |
| | | private Integer pointsType; |
| | | |
| | | @ApiModelProperty(value = "积分状态 1是加积分,2 是减积分") |
| | | private Integer pointsStatus; |
| | | private PointStatusEnum pointsStatus; |
| | | |
| | | @ApiModelProperty(value = "会员id") |
| | | private Long memberId; |