| | |
| | | package com.panzhihua.common.model.vos.community.integral.admin; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @ApiModel("管理后台-社区积分明细列表") |
| | |
| | | @ApiModelProperty("交易时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | @ApiModelProperty(value = "是否志愿者(0.否 1.是)",hidden = true) |
| | | @ApiModelProperty(value = "是否志愿者(0.否 1.是)", hidden = true) |
| | | private Integer isVolunteer; |
| | | @ApiModelProperty(value = "是否党员(0.否 1.是)",hidden = true) |
| | | @ApiModelProperty(value = "是否党员(0.否 1.是)", hidden = true) |
| | | private Integer isPartymember; |
| | | |
| | | /** |
| | | * 是否志愿者(0.否 1.是) |
| | | */ |
| | | public interface isVolunteer{ |
| | | public interface isVolunteer { |
| | | int no = 0; |
| | | int yes = 1; |
| | | } |
| | |
| | | /** |
| | | * 是否党员(0.否 1.是) |
| | | */ |
| | | public interface isPartymember{ |
| | | public interface isPartymember { |
| | | int no = 0; |
| | | int yes = 1; |
| | | } |