From a2c792ee79e69224d71dc6204c6cc01f92b9384e Mon Sep 17 00:00:00 2001 From: manailin <261030956@qq.com> Date: 星期一, 23 八月 2021 16:14:46 +0800 Subject: [PATCH] [新增]整理代码规范 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/integral/ComActIntegralCommunityRankDTO.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/integral/ComActIntegralCommunityRankDTO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/integral/ComActIntegralCommunityRankDTO.java index 7fd667d..d895b08 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/integral/ComActIntegralCommunityRankDTO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/integral/ComActIntegralCommunityRankDTO.java @@ -11,25 +11,25 @@ @ApiModelProperty(value = "社区id") private Long communityId; - @ApiModelProperty(value = "用户id",hidden = true) + @ApiModelProperty(value = "用户id", hidden = true) private Long userId; - @ApiModelProperty(value = "交易身份类型(1.居民 2.党员 3.志愿者)",hidden = true) + @ApiModelProperty(value = "交易身份类型(1.居民 2.党员 3.志愿者)", hidden = true) private Integer identityType; @ApiModelProperty("身份类型(1.全部 2.居民 3.志愿者 4.党员)") private Integer type = 1; - @ApiModelProperty(value = "分页-当前页数",example = "1") + @ApiModelProperty(value = "分页-当前页数", example = "1") private Long pageNum = 1L; - @ApiModelProperty(value = "分页-每页记录数",example = "10") + @ApiModelProperty(value = "分页-每页记录数", example = "10") private Long pageSize = 10L; /** * 身份类型(1.全部 2.居民 3.志愿者 4.党员) */ - public interface type{ + public interface type { int all = 1; int resident = 2; int party = 3; @@ -39,7 +39,7 @@ /** * 交易身份类型(1.居民 2.党员 3.志愿者) */ - public interface identityType{ + public interface identityType { int resident = 1; int party = 2; int volunteer = 3; -- Gitblit v1.7.1