| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.checkerframework.checker.units.qual.A; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | private String community; |
| | | |
| | | @ApiModelProperty(value = "社区ID") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value = "服务对象") |
| | |
| | | |
| | | @ApiModelProperty(value = "冻结状态 1:已冻结 0:正常中") |
| | | private Integer freezeStatus; |
| | | |
| | | @ApiModelProperty(value = "是否确认党员信息") |
| | | private Integer isConfirm; |
| | | |
| | | @ApiModelProperty(value = "拒绝理由") |
| | | private String refuseReason; |
| | |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | |
| | | @ApiModelProperty(value = "添加来源 0:小程序; 1:管理后台") |
| | | private Integer source; |
| | | |
| | | |
| | | } |