mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
chore: 工作区反编译与 Maven/文档/脚本同步到发布分支
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
+23
-44
@@ -2,54 +2,33 @@ package cn.cloudwalk.cloud.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class CloudwalkBaseIdentify implements Serializable {
|
||||
private static final long serialVersionUID = -2923446725609856732L;
|
||||
private String id;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CloudwalkBaseIdentify
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -2923446725609856732L;
|
||||
private String id;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+30
-57
@@ -1,68 +1,41 @@
|
||||
package cn.cloudwalk.cloud.entity;
|
||||
|
||||
public class CloudwalkBasePeriod extends CloudwalkBaseIdentify {
|
||||
private static final long serialVersionUID = 4257604668089816087L;
|
||||
private Long createBeginTime;
|
||||
private Long createEndTime;
|
||||
private Long lastUpdateBeginTime;
|
||||
private Long lastUpdateEndTime;
|
||||
|
||||
public Long getCreateBeginTime() {
|
||||
return this.createBeginTime;
|
||||
}
|
||||
|
||||
public Long getCreateEndTime() {
|
||||
return this.createEndTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateBeginTime() {
|
||||
return this.lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateEndTime() {
|
||||
return this.lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public void setCreateBeginTime(Long createBeginTime) {
|
||||
this.createBeginTime = createBeginTime;
|
||||
}
|
||||
|
||||
public void setCreateEndTime(Long createEndTime) {
|
||||
this.createEndTime = createEndTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CloudwalkBasePeriod
|
||||
extends CloudwalkBaseIdentify
|
||||
{
|
||||
private static final long serialVersionUID = 4257604668089816087L;
|
||||
private Long createBeginTime;
|
||||
private Long createEndTime;
|
||||
private Long lastUpdateBeginTime;
|
||||
private Long lastUpdateEndTime;
|
||||
|
||||
public Long getCreateBeginTime() {
|
||||
return this.createBeginTime;
|
||||
public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getCreateEndTime() {
|
||||
return this.createEndTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateBeginTime() {
|
||||
return this.lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateEndTime() {
|
||||
return this.lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public void setCreateBeginTime(Long createBeginTime) {
|
||||
this.createBeginTime = createBeginTime;
|
||||
}
|
||||
|
||||
public void setCreateEndTime(Long createEndTime) {
|
||||
this.createEndTime = createEndTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+16
-35
@@ -2,43 +2,24 @@ package cn.cloudwalk.cloud.entity;
|
||||
|
||||
import cn.cloudwalk.cloud.enums.SortEnum;
|
||||
|
||||
public class CloudwalkBaseSort extends CloudwalkBasePeriod {
|
||||
private static final long serialVersionUID = 2250338703453500458L;
|
||||
private String sortField;
|
||||
private SortEnum sortValue;
|
||||
|
||||
public String getSortField() {
|
||||
return this.sortField;
|
||||
}
|
||||
|
||||
public void setSortField(String sortField) {
|
||||
this.sortField = sortField;
|
||||
}
|
||||
|
||||
public SortEnum getSortValue() {
|
||||
return (this.sortValue == null) ? SortEnum.AES : this.sortValue;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CloudwalkBaseSort
|
||||
extends CloudwalkBasePeriod
|
||||
{
|
||||
private static final long serialVersionUID = 2250338703453500458L;
|
||||
private String sortField;
|
||||
private SortEnum sortValue;
|
||||
|
||||
public String getSortField() {
|
||||
return this.sortField;
|
||||
public void setSortValue(SortEnum sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSortField(String sortField) {
|
||||
this.sortField = sortField;
|
||||
}
|
||||
|
||||
public SortEnum getSortValue() {
|
||||
return (this.sortValue == null) ? SortEnum.AES : this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(SortEnum sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
+16
-35
@@ -1,42 +1,23 @@
|
||||
package cn.cloudwalk.cloud.entity;
|
||||
|
||||
public class CloudwalkBaseTimes extends CloudwalkBaseIdentify {
|
||||
private static final long serialVersionUID = -1915432938815132522L;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CloudwalkBaseTimes
|
||||
extends CloudwalkBaseIdentify
|
||||
{
|
||||
private static final long serialVersionUID = -1915432938815132522L;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user