mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-11 09:20:30 +08:00
feat: add service config templates and extraction script
Former-commit-id: 1de24b7eb79676d1aba9d799a58c5a753290cf52
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(value={ElementType.FIELD})
|
||||
@Retention(value=RetentionPolicy.RUNTIME)
|
||||
public @interface DavinciPic {
|
||||
}
|
||||
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(value=RetentionPolicy.RUNTIME)
|
||||
@Target(value={ElementType.FIELD})
|
||||
public @interface ExcelAttribute {
|
||||
public String name();
|
||||
|
||||
public String column() default "";
|
||||
|
||||
public String[] combo() default {};
|
||||
|
||||
public boolean isExport() default true;
|
||||
|
||||
public boolean isMark() default false;
|
||||
|
||||
public boolean isDate() default false;
|
||||
|
||||
public boolean isPic() default false;
|
||||
}
|
||||
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(value=RetentionPolicy.RUNTIME)
|
||||
@Target(value={ElementType.FIELD})
|
||||
public @interface ExcelBytesAttribute {
|
||||
public String pathField() default "";
|
||||
}
|
||||
|
||||
+156
@@ -0,0 +1,156 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassAddDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5470661928107707031L;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private String shotId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", isEnable=").append(this.isEnable);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7670922174248957040L;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassGetsDTO{ids=" + this.ids + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceAddDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 560657636804426864L;
|
||||
private String classId;
|
||||
private String deviceId;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassDeviceDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4715124386169476195L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2982780226834169438L;
|
||||
private String classId;
|
||||
private String deviceId;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassDeviceGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5373249610163225551L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -326722009477733573L;
|
||||
private String id;
|
||||
private String classId;
|
||||
private String deviceId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassDeviceQueryDTO{id='" + this.id + '\'' + ", classId='" + this.classId + '\'' + ", deviceId='" + this.deviceId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4336188638752517632L;
|
||||
private String id;
|
||||
private String classId;
|
||||
private String deviceId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceShotAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String deviceId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceShotEditDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5111849320685128369L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String deviceId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassDeviceShotGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4424077752511438026L;
|
||||
private List<String> ids;
|
||||
private String shotId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassDeviceShotGetsDTO{ids=" + this.ids + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceShotQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2768452947638243478L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassDeviceShotQueryDTO{id='" + this.id + '\'' + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6862425567124605097L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String deviceId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+156
@@ -0,0 +1,156 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7222316718676536040L;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private String shotId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", isEnable=").append(this.isEnable);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8141083458060227759L;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassGetsDTO{ids=" + this.ids + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreAddDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6154180883583833615L;
|
||||
private String classId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreAddDTO{, classId='" + this.classId + '\'' + ", imageStoreId='" + this.imageStoreId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassImagestoreDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2463946854391907059L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreGetsDTO{ids=" + this.ids + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4052707235299510554L;
|
||||
private String classId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", imageStoreId=").append(this.imageStoreId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassImagestoreGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5684892886599028921L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreGetsDTO{ids=" + this.ids + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassImagestoreQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6550307752938052209L;
|
||||
private String id;
|
||||
private String classId;
|
||||
private String imagestoreId;
|
||||
private List<String> imagestoreIds;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getImagestoreId() {
|
||||
return this.imagestoreId;
|
||||
}
|
||||
|
||||
public void setImagestoreId(String imagestoreId) {
|
||||
this.imagestoreId = imagestoreId;
|
||||
}
|
||||
|
||||
public List<String> getImagestoreIds() {
|
||||
return this.imagestoreIds;
|
||||
}
|
||||
|
||||
public void setImagestoreIds(List<String> imagestoreIds) {
|
||||
this.imagestoreIds = imagestoreIds;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreQueryDTO{id='" + this.id + '\'' + "classId='" + this.classId + '\'' + "imagestoreId='" + this.imagestoreId + '\'' + "imagestoreIds='" + this.imagestoreIds + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6348767600037055755L;
|
||||
private String id;
|
||||
private String classId;
|
||||
private String imageStoreId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", imageStoreId=").append(this.imageStoreId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreShotAddDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8052740883816518698L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String imageStoreId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", imageStoreId=").append(this.imageStoreId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreShotEditDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2669137924923363760L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String imageStoreId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", imageStoreId=").append(this.imageStoreId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassImagestoreShotGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5342161517435044432L;
|
||||
private List<String> ids;
|
||||
private String shotId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreShotGetsDTO{ids=" + this.ids + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreShotQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1711208186809331939L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassImagestoreShotQueryDTO{id='" + this.id + '\'' + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3997082204034896372L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String imageStoreId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", imageStoreId=").append(this.imageStoreId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String classId;
|
||||
private String orgId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", orgId=").append(this.orgId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassOrgDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1502477805145957037L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassOrgQueryDTO{ids=" + this.ids + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassOrgQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1502477805145957037L;
|
||||
private List<String> classIds;
|
||||
private List<String> orgIds;
|
||||
|
||||
public List<String> getClassIds() {
|
||||
return this.classIds;
|
||||
}
|
||||
|
||||
public void setClassIds(List<String> classIds) {
|
||||
this.classIds = classIds;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassOrgQueryDTO{classIds=" + this.classIds + "orgIds=" + this.orgIds + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String classId;
|
||||
private String orgId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", orgId=").append(this.orgId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgShotAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String orgId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", orgId=").append(this.orgId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgShotQueryDTO
|
||||
implements Serializable {
|
||||
private String shotId;
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassOrgShotQueryDTO{shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String orgId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", orgId=").append(this.orgId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassPageDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8317454703812589820L;
|
||||
private String businessId;
|
||||
private List<String> classIds;
|
||||
private Integer status;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public List<String> getClassIds() {
|
||||
return this.classIds;
|
||||
}
|
||||
|
||||
public void setClassIds(List<String> classIds) {
|
||||
this.classIds = classIds;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassPageDTO{, businessId='" + this.businessId + '\'' + ", classIds='" + this.classIds + '\'' + ", status='" + this.status + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassPageResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4609865709306999629L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private String shotId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", isEnable=").append(this.isEnable);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8317454703812589820L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private List<String> ids;
|
||||
private String name;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassQueryDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", isEnable=" + this.isEnable + ", status=" + this.status + ", name=" + this.name + ", ids=" + this.ids + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4609865709306999629L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private String shotId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", isEnable=").append(this.isEnable);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+190
@@ -0,0 +1,190 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassShotAddDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4257761930696199571L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+181
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassShotDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+181
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassShotEditDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4257761930696199571L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassShotGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4152477516035907241L;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassShotQueryDTO{ids='" + this.ids + '\'' + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassShotQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4152477516035907241L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendClassShotQueryDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+181
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.clas.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4257761930696199571L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAllowDayoffOvertime() {
|
||||
return this.allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public void setAllowDayoffOvertime(Integer allowDayoffOvertime) {
|
||||
this.allowDayoffOvertime = allowDayoffOvertime;
|
||||
}
|
||||
|
||||
public Integer getDayoffMinOvertime() {
|
||||
return this.dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public void setDayoffMinOvertime(Integer dayoffMinOvertime) {
|
||||
this.dayoffMinOvertime = dayoffMinOvertime;
|
||||
}
|
||||
|
||||
public Integer getAllowWorkingOvertime() {
|
||||
return this.allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public void setAllowWorkingOvertime(Integer allowWorkingOvertime) {
|
||||
this.allowWorkingOvertime = allowWorkingOvertime;
|
||||
}
|
||||
|
||||
public Integer getStartOvertime() {
|
||||
return this.startOvertime;
|
||||
}
|
||||
|
||||
public void setStartOvertime(Integer startOvertime) {
|
||||
this.startOvertime = startOvertime;
|
||||
}
|
||||
|
||||
public Integer getMinOvertime() {
|
||||
return this.minOvertime;
|
||||
}
|
||||
|
||||
public void setMinOvertime(Integer minOvertime) {
|
||||
this.minOvertime = minOvertime;
|
||||
}
|
||||
|
||||
public Integer getMaxOvertime() {
|
||||
return this.maxOvertime;
|
||||
}
|
||||
|
||||
public void setMaxOvertime(Integer maxOvertime) {
|
||||
this.maxOvertime = maxOvertime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", name=").append(this.name);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", allowDayoffOvertime=").append(this.allowDayoffOvertime);
|
||||
sb.append(", dayoffMinOvertime=").append(this.dayoffMinOvertime);
|
||||
sb.append(", allowWorkingOvertime=").append(this.allowWorkingOvertime);
|
||||
sb.append(", startOvertime=").append(this.startOvertime);
|
||||
sb.append(", minOvertime=").append(this.minOvertime);
|
||||
sb.append(", maxOvertime=").append(this.maxOvertime);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", remark=").append(this.remark);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+142
@@ -0,0 +1,142 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class AttendSchedulingDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String classId;
|
||||
private String shiftId;
|
||||
private Date schedulingDate;
|
||||
private Integer schedulingType;
|
||||
private Integer isPublish;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public Date getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(Date schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public Integer getSchedulingType() {
|
||||
return this.schedulingType;
|
||||
}
|
||||
|
||||
public void setSchedulingType(Integer schedulingType) {
|
||||
this.schedulingType = schedulingType;
|
||||
}
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", personId=").append(this.personId);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", shiftId=").append(this.shiftId);
|
||||
sb.append(", schedulingDate=").append(this.schedulingDate);
|
||||
sb.append(", schedulingType=").append(this.schedulingType);
|
||||
sb.append(", isPublish=").append(this.isPublish);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendSchedulingDetailQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3486392110915684924L;
|
||||
private String businessId;
|
||||
private String classId;
|
||||
private List<String> personIds;
|
||||
private Long schedulingStartDate;
|
||||
private Long schedulingEndDate;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public Long getSchedulingStartDate() {
|
||||
return this.schedulingStartDate;
|
||||
}
|
||||
|
||||
public void setSchedulingStartDate(Long schedulingStartDate) {
|
||||
this.schedulingStartDate = schedulingStartDate;
|
||||
}
|
||||
|
||||
public Long getSchedulingEndDate() {
|
||||
return this.schedulingEndDate;
|
||||
}
|
||||
|
||||
public void setSchedulingEndDate(Long schedulingEndDate) {
|
||||
this.schedulingEndDate = schedulingEndDate;
|
||||
}
|
||||
}
|
||||
|
||||
+156
@@ -0,0 +1,156 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingDetailResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8878257527743609559L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private long faceImagePath;
|
||||
private String personName;
|
||||
private String personId;
|
||||
private long date;
|
||||
private String shiftId;
|
||||
private String shiftName;
|
||||
private int isEnable;
|
||||
private String imageStoreId;
|
||||
private String className;
|
||||
private String classId;
|
||||
private int isPublish;
|
||||
private int shiftType;
|
||||
private long lastUpdateTime;
|
||||
private Integer attendDays;
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public int getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(int shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(int isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public String getClassName() {
|
||||
return this.className;
|
||||
}
|
||||
|
||||
public void setClassName(String className) {
|
||||
this.className = className;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public long getFaceImagePath() {
|
||||
return this.faceImagePath;
|
||||
}
|
||||
|
||||
public void setFaceImagePath(long faceImagePath) {
|
||||
this.faceImagePath = faceImagePath;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public long getDate() {
|
||||
return this.date;
|
||||
}
|
||||
|
||||
public void setDate(long date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public int getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(int isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
}
|
||||
|
||||
+129
@@ -0,0 +1,129 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingExecuteInsertDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8952091546635919415L;
|
||||
private String ID;
|
||||
private String lastUpdateUserId;
|
||||
private long lastUpdateTime;
|
||||
private long createTime;
|
||||
private String createUserId;
|
||||
private String businessId;
|
||||
private Integer schedulingType;
|
||||
private String classId;
|
||||
private String personId;
|
||||
private long schedulingDate;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
private int isPublish;
|
||||
|
||||
public String getID() {
|
||||
return this.ID;
|
||||
}
|
||||
|
||||
public void setID(String iD) {
|
||||
this.ID = iD;
|
||||
}
|
||||
|
||||
public int getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(int isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getSchedulingType() {
|
||||
return this.schedulingType;
|
||||
}
|
||||
|
||||
public void setSchedulingType(Integer schedulingType) {
|
||||
this.schedulingType = schedulingType;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingExecuteResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3867546666612716918L;
|
||||
private boolean schedulingResult;
|
||||
|
||||
public boolean isSchedulingResult() {
|
||||
return this.schedulingResult;
|
||||
}
|
||||
|
||||
public void setSchedulingResult(boolean schedulingResult) {
|
||||
this.schedulingResult = schedulingResult;
|
||||
}
|
||||
}
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingPageDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7326107173521317201L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String classId;
|
||||
private String shiftId;
|
||||
private Integer isPublish;
|
||||
private Long schedulingDate;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public Long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(Long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendSchedulingPageDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", classId='" + this.classId + '\'' + ", isPublish='" + this.isPublish + '\'' + ", schedulingDate='" + this.schedulingDate + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingPageResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6173609314364427440L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String classId;
|
||||
private String shiftId;
|
||||
private Long schedulingDate;
|
||||
private Integer schedulingType;
|
||||
private Integer isPublish;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public Long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(Long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public Integer getSchedulingType() {
|
||||
return this.schedulingType;
|
||||
}
|
||||
|
||||
public void setSchedulingType(Integer schedulingType) {
|
||||
this.schedulingType = schedulingType;
|
||||
}
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", personId=").append(this.personId);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", shiftId=").append(this.shiftId);
|
||||
sb.append(", schedulingDate=").append(this.schedulingDate);
|
||||
sb.append(", schedulingType=").append(this.schedulingType);
|
||||
sb.append(", isPublish=").append(this.isPublish);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingPublishResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4036865295026600387L;
|
||||
private boolean result;
|
||||
|
||||
public boolean isResult() {
|
||||
return this.result;
|
||||
}
|
||||
|
||||
public void setResult(boolean result) {
|
||||
this.result = result;
|
||||
}
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendSchedulingPublishUpdateDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4160093349752016685L;
|
||||
private List<String> ids;
|
||||
private long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private int isPublish;
|
||||
private String businessId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public int getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(int isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7326107173521317201L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String classId;
|
||||
private String shiftId;
|
||||
private Integer isPublish;
|
||||
private String personId;
|
||||
private Long schedulingDate;
|
||||
private Long schedulingDateStart;
|
||||
private Long schedulingDateEnd;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(Long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public Long getSchedulingDateStart() {
|
||||
return this.schedulingDateStart;
|
||||
}
|
||||
|
||||
public void setSchedulingDateStart(Long schedulingDateStart) {
|
||||
this.schedulingDateStart = schedulingDateStart;
|
||||
}
|
||||
|
||||
public Long getSchedulingDateEnd() {
|
||||
return this.schedulingDateEnd;
|
||||
}
|
||||
|
||||
public void setSchedulingDateEnd(Long schedulingDateEnd) {
|
||||
this.schedulingDateEnd = schedulingDateEnd;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendSchedulingQueryDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", classId='" + this.classId + '\'' + ", shiftId='" + this.shiftId + '\'' + ", isPublish=" + this.isPublish + ", personId='" + this.personId + '\'' + ", schedulingDate=" + this.schedulingDate + ", schedulingDateStart=" + this.schedulingDateStart + ", schedulingDateEnd=" + this.schedulingDateEnd + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6173609314364427440L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String classId;
|
||||
private String shiftId;
|
||||
private Long schedulingDate;
|
||||
private Integer schedulingType;
|
||||
private Integer isPublish;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public Long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(Long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
|
||||
public Integer getSchedulingType() {
|
||||
return this.schedulingType;
|
||||
}
|
||||
|
||||
public void setSchedulingType(Integer schedulingType) {
|
||||
this.schedulingType = schedulingType;
|
||||
}
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", personId=").append(this.personId);
|
||||
sb.append(", classId=").append(this.classId);
|
||||
sb.append(", shiftId=").append(this.shiftId);
|
||||
sb.append(", schedulingDate=").append(this.schedulingDate);
|
||||
sb.append(", schedulingType=").append(this.schedulingType);
|
||||
sb.append(", isPublish=").append(this.isPublish);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingSelfQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3247560036937228288L;
|
||||
private long schedulingStartDate;
|
||||
private long schedulingEndDate;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public long getSchedulingStartDate() {
|
||||
return this.schedulingStartDate;
|
||||
}
|
||||
|
||||
public void setSchedulingStartDate(long schedulingStartDate) {
|
||||
this.schedulingStartDate = schedulingStartDate;
|
||||
}
|
||||
|
||||
public long getSchedulingEndDate() {
|
||||
return this.schedulingEndDate;
|
||||
}
|
||||
|
||||
public void setSchedulingEndDate(long schedulingEndDate) {
|
||||
this.schedulingEndDate = schedulingEndDate;
|
||||
}
|
||||
}
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingSelfResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7024565908524365715L;
|
||||
private long date;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
private int isRest;
|
||||
private Integer isPublish;
|
||||
|
||||
public Integer getIsPublish() {
|
||||
return this.isPublish;
|
||||
}
|
||||
|
||||
public void setIsPublish(Integer isPublish) {
|
||||
this.isPublish = isPublish;
|
||||
}
|
||||
|
||||
public long getDate() {
|
||||
return this.date;
|
||||
}
|
||||
|
||||
public void setDate(long date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public int getIsRest() {
|
||||
return this.isRest;
|
||||
}
|
||||
|
||||
public void setIsRest(int isRest) {
|
||||
this.isRest = isRest;
|
||||
}
|
||||
}
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingSetDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String periodDays;
|
||||
private String workDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPeriodDays() {
|
||||
return this.periodDays;
|
||||
}
|
||||
|
||||
public void setPeriodDays(String periodDays) {
|
||||
this.periodDays = periodDays;
|
||||
}
|
||||
|
||||
public String getWorkDays() {
|
||||
return this.workDays;
|
||||
}
|
||||
|
||||
public void setWorkDays(String workDays) {
|
||||
this.workDays = workDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", periodDays=").append(this.periodDays);
|
||||
sb.append(", workDays=").append(this.workDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendSchedulingVerifyQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8859015025605475257L;
|
||||
private String businessId;
|
||||
private List<Long> days;
|
||||
private String personId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public List<Long> getDays() {
|
||||
return this.days;
|
||||
}
|
||||
|
||||
public void setDays(List<Long> days) {
|
||||
this.days = days;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
}
|
||||
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendSchedulingVerifyResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5629640488633077148L;
|
||||
private String personId;
|
||||
private String shiftId;
|
||||
private long schedulingDate;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer shiftType;
|
||||
|
||||
public Integer getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(Integer shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(String startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public String getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(String endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public long getSchedulingDate() {
|
||||
return this.schedulingDate;
|
||||
}
|
||||
|
||||
public void setSchedulingDate(long schedulingDate) {
|
||||
this.schedulingDate = schedulingDate;
|
||||
}
|
||||
}
|
||||
|
||||
+183
@@ -0,0 +1,183 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftAddDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3962507972099984570L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private Integer shiftType;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private String isNextDay;
|
||||
private int attendDays;
|
||||
private String endAdaptTime;
|
||||
private String startAdaptTime;
|
||||
private String shotId;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private long creatTime;
|
||||
private String createUserId;
|
||||
private long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Integer builtin;
|
||||
private String periodDesc;
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public long getCreatTime() {
|
||||
return this.creatTime;
|
||||
}
|
||||
|
||||
public void setCreatTime(long creatTime) {
|
||||
this.creatTime = creatTime;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(String startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public String getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(String endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public int getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public Integer getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(Integer shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public String getIsNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setIsNextDay(String isNextDay) {
|
||||
this.isNextDay = isNextDay;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getBuiltin() {
|
||||
return this.builtin;
|
||||
}
|
||||
|
||||
public void setBuiltin(Integer builtin) {
|
||||
this.builtin = builtin;
|
||||
}
|
||||
|
||||
public void setAttendDays(int attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
}
|
||||
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftAddResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7491000832784291971L;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private int shiftType;
|
||||
private long startWorkTime;
|
||||
private long endWorkTime;
|
||||
private boolean isNextDay;
|
||||
private int attendDays;
|
||||
private long endAdaptTime;
|
||||
private long startAdaptTime;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public int getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(int shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public long getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(long startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public long getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(long endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public boolean isNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setNextDay(boolean isNextDay) {
|
||||
this.isNextDay = isNextDay;
|
||||
}
|
||||
|
||||
public int getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(int attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public long getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(long endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public long getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(long startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
}
|
||||
|
||||
+112
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private String shotId;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Integer shiftType;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public Integer getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(Integer shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", shiftName=").append(this.shiftName);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4767440913132825083L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
private Integer status;
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
}
|
||||
|
||||
+246
@@ -0,0 +1,246 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftEditDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6426975200671468948L;
|
||||
private String id;
|
||||
private String shiftId;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private Integer shiftType;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private boolean isNextDay;
|
||||
private int attendDays;
|
||||
private String endAdaptTime;
|
||||
private String startAdaptTime;
|
||||
private String shotId;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private long creatTime;
|
||||
private String createUserId;
|
||||
private long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Integer builtin;
|
||||
private String periodDesc;
|
||||
private int afterTime;
|
||||
private int beforeTime;
|
||||
private int absentTime;
|
||||
private String standardTime;
|
||||
private int overTime;
|
||||
private int sortValue;
|
||||
|
||||
public String getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(String standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public int getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(int overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public int getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(int sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public int getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(int absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public int getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(int afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public int getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(int beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(String startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public String getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(String endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public boolean isNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setNextDay(boolean isNextDay) {
|
||||
this.isNextDay = isNextDay;
|
||||
}
|
||||
|
||||
public int getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(int attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public long getCreatTime() {
|
||||
return this.creatTime;
|
||||
}
|
||||
|
||||
public void setCreatTime(long creatTime) {
|
||||
this.creatTime = creatTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Integer getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(Integer shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getBuiltin() {
|
||||
return this.builtin;
|
||||
}
|
||||
|
||||
public void setBuiltin(Integer builtin) {
|
||||
this.builtin = builtin;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
}
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendShiftGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7011164980542114317L;
|
||||
private String businessId;
|
||||
private String id;
|
||||
private List<String> ids;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftGetsDTO{businessId='" + this.businessId + '\'' + ", id='" + this.id + '\'' + ", ids=" + this.ids + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+124
@@ -0,0 +1,124 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftGetsResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5365782470289259359L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private String shotId;
|
||||
private Integer shiftType;
|
||||
private Integer builtin;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public Integer getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(Integer shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public Integer getBuiltin() {
|
||||
return this.builtin;
|
||||
}
|
||||
|
||||
public void setBuiltin(Integer builtin) {
|
||||
this.builtin = builtin;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftGetsResultDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", shiftName='" + this.shiftName + '\'' + ", shotId='" + this.shotId + '\'' + ", shiftType=" + this.shiftType + ", isEnable=" + this.isEnable + ", status=" + this.status + ", createTime=" + this.createTime + ", createUserId='" + this.createUserId + '\'' + ", lastUpdateTime=" + this.lastUpdateTime + ", lastUpdateUserId='" + this.lastUpdateUserId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shiftId;
|
||||
private String periodDesc;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private Integer standardTime;
|
||||
private Integer absentTime;
|
||||
private Integer overTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer sortValue;
|
||||
private Integer attendDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getStartworkTime() {
|
||||
return this.startworkTime;
|
||||
}
|
||||
|
||||
public void setStartworkTime(String startworkTime) {
|
||||
this.startworkTime = startworkTime;
|
||||
}
|
||||
|
||||
public String getEndworkTime() {
|
||||
return this.endworkTime;
|
||||
}
|
||||
|
||||
public void setEndworkTime(String endworkTime) {
|
||||
this.endworkTime = endworkTime;
|
||||
}
|
||||
|
||||
public Integer getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(Integer afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public Integer getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(Integer beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public Integer getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(Integer standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public Integer getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(Integer absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public Integer getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(Integer sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shiftId=").append(this.shiftId);
|
||||
sb.append(", periodDesc=").append(this.periodDesc);
|
||||
sb.append(", startworkTime=").append(this.startworkTime);
|
||||
sb.append(", endworkTime=").append(this.endworkTime);
|
||||
sb.append(", afterTime=").append(this.afterTime);
|
||||
sb.append(", beforeTime=").append(this.beforeTime);
|
||||
sb.append(", standardTime=").append(this.standardTime);
|
||||
sb.append(", absentTime=").append(this.absentTime);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", startAdaptTime=").append(this.startAdaptTime);
|
||||
sb.append(", endAdaptTime=").append(this.endAdaptTime);
|
||||
sb.append(", sortValue=").append(this.sortValue);
|
||||
sb.append(", attendDays=").append(this.attendDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendShiftPeriodQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -982113063292977271L;
|
||||
private String id;
|
||||
private String shiftId;
|
||||
private List<String> shiftIds;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public List<String> getShiftIds() {
|
||||
return this.shiftIds;
|
||||
}
|
||||
|
||||
public void setShiftIds(List<String> shiftIds) {
|
||||
this.shiftIds = shiftIds;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftPeriodQueryDTO{id='" + this.id + '\'' + ", shiftId='" + this.shiftId + '\'' + ", shiftIds=" + this.shiftIds + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2906924161938141491L;
|
||||
private String id;
|
||||
private String shiftId;
|
||||
private String periodDesc;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private Integer standardTime;
|
||||
private Integer absentTime;
|
||||
private Integer overTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer sortValue;
|
||||
private Integer attendDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getStartworkTime() {
|
||||
return this.startworkTime;
|
||||
}
|
||||
|
||||
public void setStartworkTime(String startworkTime) {
|
||||
this.startworkTime = startworkTime;
|
||||
}
|
||||
|
||||
public String getEndworkTime() {
|
||||
return this.endworkTime;
|
||||
}
|
||||
|
||||
public void setEndworkTime(String endworkTime) {
|
||||
this.endworkTime = endworkTime;
|
||||
}
|
||||
|
||||
public Integer getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(Integer afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public Integer getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(Integer beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public Integer getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(Integer standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public Integer getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(Integer absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public Integer getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(Integer sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shiftId=").append(this.shiftId);
|
||||
sb.append(", periodDesc=").append(this.periodDesc);
|
||||
sb.append(", startworkTime=").append(this.startworkTime);
|
||||
sb.append(", endworkTime=").append(this.endworkTime);
|
||||
sb.append(", afterTime=").append(this.afterTime);
|
||||
sb.append(", beforeTime=").append(this.beforeTime);
|
||||
sb.append(", standardTime=").append(this.standardTime);
|
||||
sb.append(", absentTime=").append(this.absentTime);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", startAdaptTime=").append(this.startAdaptTime);
|
||||
sb.append(", endAdaptTime=").append(this.endAdaptTime);
|
||||
sb.append(", sortValue=").append(this.sortValue);
|
||||
sb.append(", attendDays=").append(this.attendDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodShotAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String periodDesc;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private Integer standardTime;
|
||||
private Integer absentTime;
|
||||
private Integer overTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer sortValue;
|
||||
private Integer attendDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getStartworkTime() {
|
||||
return this.startworkTime;
|
||||
}
|
||||
|
||||
public void setStartworkTime(String startworkTime) {
|
||||
this.startworkTime = startworkTime;
|
||||
}
|
||||
|
||||
public String getEndworkTime() {
|
||||
return this.endworkTime;
|
||||
}
|
||||
|
||||
public void setEndworkTime(String endworkTime) {
|
||||
this.endworkTime = endworkTime;
|
||||
}
|
||||
|
||||
public Integer getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(Integer afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public Integer getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(Integer beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public Integer getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(Integer standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public Integer getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(Integer absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public Integer getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(Integer sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", periodDesc=").append(this.periodDesc);
|
||||
sb.append(", startworkTime=").append(this.startworkTime);
|
||||
sb.append(", endworkTime=").append(this.endworkTime);
|
||||
sb.append(", afterTime=").append(this.afterTime);
|
||||
sb.append(", beforeTime=").append(this.beforeTime);
|
||||
sb.append(", standardTime=").append(this.standardTime);
|
||||
sb.append(", absentTime=").append(this.absentTime);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", startAdaptTime=").append(this.startAdaptTime);
|
||||
sb.append(", endAdaptTime=").append(this.endAdaptTime);
|
||||
sb.append(", sortValue=").append(this.sortValue);
|
||||
sb.append(", attendDays=").append(this.attendDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodShotEditDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String periodDesc;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private Integer standardTime;
|
||||
private Integer absentTime;
|
||||
private Integer overTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer sortValue;
|
||||
private Integer attendDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getStartworkTime() {
|
||||
return this.startworkTime;
|
||||
}
|
||||
|
||||
public void setStartworkTime(String startworkTime) {
|
||||
this.startworkTime = startworkTime;
|
||||
}
|
||||
|
||||
public String getEndworkTime() {
|
||||
return this.endworkTime;
|
||||
}
|
||||
|
||||
public void setEndworkTime(String endworkTime) {
|
||||
this.endworkTime = endworkTime;
|
||||
}
|
||||
|
||||
public Integer getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(Integer afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public Integer getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(Integer beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public Integer getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(Integer standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public Integer getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(Integer absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public Integer getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(Integer sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", periodDesc=").append(this.periodDesc);
|
||||
sb.append(", startworkTime=").append(this.startworkTime);
|
||||
sb.append(", endworkTime=").append(this.endworkTime);
|
||||
sb.append(", afterTime=").append(this.afterTime);
|
||||
sb.append(", beforeTime=").append(this.beforeTime);
|
||||
sb.append(", standardTime=").append(this.standardTime);
|
||||
sb.append(", absentTime=").append(this.absentTime);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", startAdaptTime=").append(this.startAdaptTime);
|
||||
sb.append(", endAdaptTime=").append(this.endAdaptTime);
|
||||
sb.append(", sortValue=").append(this.sortValue);
|
||||
sb.append(", attendDays=").append(this.attendDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodShotGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 880653291650633909L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftPeriodShotQueryDTO{id='" + this.id + '\'' + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodShotQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 880653291650633909L;
|
||||
private String id;
|
||||
private String shotId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftPeriodShotQueryDTO{id='" + this.id + '\'' + ", shotId='" + this.shotId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+201
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftPeriodShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String shotId;
|
||||
private String periodDesc;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private Integer standardTime;
|
||||
private Integer absentTime;
|
||||
private Integer overTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private Integer sortValue;
|
||||
private Integer attendDays;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
public String getStartworkTime() {
|
||||
return this.startworkTime;
|
||||
}
|
||||
|
||||
public void setStartworkTime(String startworkTime) {
|
||||
this.startworkTime = startworkTime;
|
||||
}
|
||||
|
||||
public String getEndworkTime() {
|
||||
return this.endworkTime;
|
||||
}
|
||||
|
||||
public void setEndworkTime(String endworkTime) {
|
||||
this.endworkTime = endworkTime;
|
||||
}
|
||||
|
||||
public Integer getAfterTime() {
|
||||
return this.afterTime;
|
||||
}
|
||||
|
||||
public void setAfterTime(Integer afterTime) {
|
||||
this.afterTime = afterTime;
|
||||
}
|
||||
|
||||
public Integer getBeforeTime() {
|
||||
return this.beforeTime;
|
||||
}
|
||||
|
||||
public void setBeforeTime(Integer beforeTime) {
|
||||
this.beforeTime = beforeTime;
|
||||
}
|
||||
|
||||
public Integer getStandardTime() {
|
||||
return this.standardTime;
|
||||
}
|
||||
|
||||
public void setStandardTime(Integer standardTime) {
|
||||
this.standardTime = standardTime;
|
||||
}
|
||||
|
||||
public Integer getAbsentTime() {
|
||||
return this.absentTime;
|
||||
}
|
||||
|
||||
public void setAbsentTime(Integer absentTime) {
|
||||
this.absentTime = absentTime;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public Integer getSortValue() {
|
||||
return this.sortValue;
|
||||
}
|
||||
|
||||
public void setSortValue(Integer sortValue) {
|
||||
this.sortValue = sortValue;
|
||||
}
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", shotId=").append(this.shotId);
|
||||
sb.append(", periodDesc=").append(this.periodDesc);
|
||||
sb.append(", startworkTime=").append(this.startworkTime);
|
||||
sb.append(", endworkTime=").append(this.endworkTime);
|
||||
sb.append(", afterTime=").append(this.afterTime);
|
||||
sb.append(", beforeTime=").append(this.beforeTime);
|
||||
sb.append(", standardTime=").append(this.standardTime);
|
||||
sb.append(", absentTime=").append(this.absentTime);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", startAdaptTime=").append(this.startAdaptTime);
|
||||
sb.append(", endAdaptTime=").append(this.endAdaptTime);
|
||||
sb.append(", sortValue=").append(this.sortValue);
|
||||
sb.append(", attendDays=").append(this.attendDays);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7011164980542114317L;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
}
|
||||
|
||||
+129
@@ -0,0 +1,129 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8216465590035865015L;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
private int status;
|
||||
private int isEnable;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
private int attendDays;
|
||||
private int shiftType;
|
||||
private int builtin;
|
||||
private String shotId;
|
||||
|
||||
public String getShotId() {
|
||||
return this.shotId;
|
||||
}
|
||||
|
||||
public void setShotId(String shotId) {
|
||||
this.shotId = shotId;
|
||||
}
|
||||
|
||||
public int getShiftType() {
|
||||
return this.shiftType;
|
||||
}
|
||||
|
||||
public void setShiftType(int shiftType) {
|
||||
this.shiftType = shiftType;
|
||||
}
|
||||
|
||||
public int getBuiltin() {
|
||||
return this.builtin;
|
||||
}
|
||||
|
||||
public void setBuiltin(int builtin) {
|
||||
this.builtin = builtin;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return this.shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public int getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(int isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(String startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public String getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(String endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public String getStartAdaptTime() {
|
||||
return this.startAdaptTime;
|
||||
}
|
||||
|
||||
public void setStartAdaptTime(String startAdaptTime) {
|
||||
this.startAdaptTime = startAdaptTime;
|
||||
}
|
||||
|
||||
public String getEndAdaptTime() {
|
||||
return this.endAdaptTime;
|
||||
}
|
||||
|
||||
public void setEndAdaptTime(String endAdaptTime) {
|
||||
this.endAdaptTime = endAdaptTime;
|
||||
}
|
||||
|
||||
public int getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(int attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
}
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftShotAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftShotDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", shiftName='" + this.shiftName + '\'' + ", isEnable=" + this.isEnable + ", status=" + this.status + ", createTime=" + this.createTime + ", createUserId='" + this.createUserId + '\'' + ", lastUpdateTime=" + this.lastUpdateTime + ", lastUpdateUserId='" + this.lastUpdateUserId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendShiftShotGetsDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4187585290909485992L;
|
||||
private List<String> ids;
|
||||
private String businessId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftShotGetsDTO{ids=" + this.ids + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftShotQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5744552007711478834L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftShotQueryDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.config.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftShotQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String shiftName;
|
||||
private Integer isEnable;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getShiftName() {
|
||||
return this.shiftName;
|
||||
}
|
||||
|
||||
public void setShiftName(String shiftName) {
|
||||
this.shiftName = shiftName;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendShiftShotDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", shiftName='" + this.shiftName + '\'' + ", isEnable=" + this.isEnable + ", status=" + this.status + ", createTime=" + this.createTime + ", createUserId='" + this.createUserId + '\'' + ", lastUpdateTime=" + this.lastUpdateTime + ", lastUpdateUserId='" + this.lastUpdateUserId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.context;
|
||||
|
||||
public class CloudWalkExtendContextValue {
|
||||
private String loginId;
|
||||
private String authorization;
|
||||
|
||||
public String getLoginId() {
|
||||
return this.loginId;
|
||||
}
|
||||
|
||||
public void setLoginId(String loginId) {
|
||||
this.loginId = loginId;
|
||||
}
|
||||
|
||||
public String getAuthorization() {
|
||||
return this.authorization;
|
||||
}
|
||||
|
||||
public void setAuthorization(String authorization) {
|
||||
this.authorization = authorization;
|
||||
}
|
||||
}
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.holiday.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SysHolidayConfDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2834305223752795351L;
|
||||
private String id;
|
||||
private Integer type;
|
||||
private String holidayDate;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getHolidayDate() {
|
||||
return this.holidayDate;
|
||||
}
|
||||
|
||||
public void setHolidayDate(String holidayDate) {
|
||||
this.holidayDate = holidayDate;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", type=").append(this.type);
|
||||
sb.append(", holidayDate=").append(this.holidayDate);
|
||||
sb.append(", status=").append(this.status);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Long attrDay;
|
||||
private Integer normal;
|
||||
private Integer late;
|
||||
private Integer leaveEarly;
|
||||
private Integer lateLeaveEarly;
|
||||
private Integer unSignIn;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getAttrDay() {
|
||||
return this.attrDay;
|
||||
}
|
||||
|
||||
public void setAttrDay(Long attrDay) {
|
||||
this.attrDay = attrDay;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getLate() {
|
||||
return this.late;
|
||||
}
|
||||
|
||||
public void setLate(Integer late) {
|
||||
this.late = late;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarly() {
|
||||
return this.leaveEarly;
|
||||
}
|
||||
|
||||
public void setLeaveEarly(Integer leaveEarly) {
|
||||
this.leaveEarly = leaveEarly;
|
||||
}
|
||||
|
||||
public Integer getLateLeaveEarly() {
|
||||
return this.lateLeaveEarly;
|
||||
}
|
||||
|
||||
public void setLateLeaveEarly(Integer lateLeaveEarly) {
|
||||
this.lateLeaveEarly = lateLeaveEarly;
|
||||
}
|
||||
|
||||
public Integer getUnSignIn() {
|
||||
return this.unSignIn;
|
||||
}
|
||||
|
||||
public void setUnSignIn(Integer unSignIn) {
|
||||
this.unSignIn = unSignIn;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", attrDay=").append(this.attrDay);
|
||||
sb.append(", normal=").append(this.normal);
|
||||
sb.append(", late=").append(this.late);
|
||||
sb.append(", leaveEarly=").append(this.leaveEarly);
|
||||
sb.append(", lateLeaveEarly=").append(this.lateLeaveEarly);
|
||||
sb.append(", unSignIn=").append(this.unSignIn);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportDeleteDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendBusinessDayReportDeleteDTO{id='" + this.id + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportEditDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Long attrDay;
|
||||
private Integer normal;
|
||||
private Integer late;
|
||||
private Integer leaveEarly;
|
||||
private Integer lateLeaveEarly;
|
||||
private Integer unSignIn;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getAttrDay() {
|
||||
return this.attrDay;
|
||||
}
|
||||
|
||||
public void setAttrDay(Long attrDay) {
|
||||
this.attrDay = attrDay;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getLate() {
|
||||
return this.late;
|
||||
}
|
||||
|
||||
public void setLate(Integer late) {
|
||||
this.late = late;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarly() {
|
||||
return this.leaveEarly;
|
||||
}
|
||||
|
||||
public void setLeaveEarly(Integer leaveEarly) {
|
||||
this.leaveEarly = leaveEarly;
|
||||
}
|
||||
|
||||
public Integer getLateLeaveEarly() {
|
||||
return this.lateLeaveEarly;
|
||||
}
|
||||
|
||||
public void setLateLeaveEarly(Integer lateLeaveEarly) {
|
||||
this.lateLeaveEarly = lateLeaveEarly;
|
||||
}
|
||||
|
||||
public Integer getUnSignIn() {
|
||||
return this.unSignIn;
|
||||
}
|
||||
|
||||
public void setUnSignIn(Integer unSignIn) {
|
||||
this.unSignIn = unSignIn;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", attrDay=").append(this.attrDay);
|
||||
sb.append(", normal=").append(this.normal);
|
||||
sb.append(", late=").append(this.late);
|
||||
sb.append(", leaveEarly=").append(this.leaveEarly);
|
||||
sb.append(", lateLeaveEarly=").append(this.lateLeaveEarly);
|
||||
sb.append(", unSignIn=").append(this.unSignIn);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportQueryDTO
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
private Long attrDay;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getAttrDay() {
|
||||
return this.attrDay;
|
||||
}
|
||||
|
||||
public void setAttrDay(Long attrDay) {
|
||||
this.attrDay = attrDay;
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendBusinessDayReportQueryDTO{businessId='" + this.businessId + '\'' + ", attrDay=" + this.attrDay + ", startTime=" + this.startTime + ", endTime=" + this.endTime + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Long attrDay;
|
||||
private Integer normal;
|
||||
private Integer late;
|
||||
private Integer leaveEarly;
|
||||
private Integer lateLeaveEarly;
|
||||
private Integer unSignIn;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getAttrDay() {
|
||||
return this.attrDay;
|
||||
}
|
||||
|
||||
public void setAttrDay(Long attrDay) {
|
||||
this.attrDay = attrDay;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getLate() {
|
||||
return this.late;
|
||||
}
|
||||
|
||||
public void setLate(Integer late) {
|
||||
this.late = late;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarly() {
|
||||
return this.leaveEarly;
|
||||
}
|
||||
|
||||
public void setLeaveEarly(Integer leaveEarly) {
|
||||
this.leaveEarly = leaveEarly;
|
||||
}
|
||||
|
||||
public Integer getLateLeaveEarly() {
|
||||
return this.lateLeaveEarly;
|
||||
}
|
||||
|
||||
public void setLateLeaveEarly(Integer lateLeaveEarly) {
|
||||
this.lateLeaveEarly = lateLeaveEarly;
|
||||
}
|
||||
|
||||
public Integer getUnSignIn() {
|
||||
return this.unSignIn;
|
||||
}
|
||||
|
||||
public void setUnSignIn(Integer unSignIn) {
|
||||
this.unSignIn = unSignIn;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", attrDay=").append(this.attrDay);
|
||||
sb.append(", normal=").append(this.normal);
|
||||
sb.append(", late=").append(this.late);
|
||||
sb.append(", leaveEarly=").append(this.leaveEarly);
|
||||
sb.append(", lateLeaveEarly=").append(this.lateLeaveEarly);
|
||||
sb.append(", unSignIn=").append(this.unSignIn);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportResultGenQueryDTO
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
private Long attrTime;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getAttrTime() {
|
||||
return this.attrTime;
|
||||
}
|
||||
|
||||
public void setAttrTime(Long attrTime) {
|
||||
this.attrTime = attrTime;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendBusinessDayReportQueryDTO{businessId='" + this.businessId + '\'' + ", attrTime=" + this.attrTime + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+69
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendBusinessDayReportResultGenQueryResultDTO
|
||||
implements Serializable {
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer late;
|
||||
private Integer leaveEarly;
|
||||
private Integer lateLeaveEarly;
|
||||
private Integer noSign;
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getLate() {
|
||||
return this.late;
|
||||
}
|
||||
|
||||
public void setLate(Integer late) {
|
||||
this.late = late;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarly() {
|
||||
return this.leaveEarly;
|
||||
}
|
||||
|
||||
public void setLeaveEarly(Integer leaveEarly) {
|
||||
this.leaveEarly = leaveEarly;
|
||||
}
|
||||
|
||||
public Integer getLateLeaveEarly() {
|
||||
return this.lateLeaveEarly;
|
||||
}
|
||||
|
||||
public void setLateLeaveEarly(Integer lateLeaveEarly) {
|
||||
this.lateLeaveEarly = lateLeaveEarly;
|
||||
}
|
||||
|
||||
public Integer getNoSign() {
|
||||
return this.noSign;
|
||||
}
|
||||
|
||||
public void setNoSign(Integer noSign) {
|
||||
this.noSign = noSign;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendBusinessDayReportResultGenQueryResultDTO{normal=" + this.normal + ", abnormal=" + this.abnormal + ", late=" + this.late + ", leaveEarly=" + this.leaveEarly + ", lateLeaveEarly=" + this.lateLeaveEarly + ", noSign=" + this.noSign + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+259
@@ -0,0 +1,259 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportAddDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String month;
|
||||
private String ruleId;
|
||||
private Byte ruleType;
|
||||
private String schedulingId;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer paidLeave;
|
||||
private Integer goOut;
|
||||
private Integer machineException;
|
||||
private Integer vacation;
|
||||
private Integer forget;
|
||||
private Integer businessTrip;
|
||||
private Integer lateTime;
|
||||
private Integer leaveEarlyTime;
|
||||
private Integer absenteeism;
|
||||
private Integer fLeaveEarlyTime;
|
||||
private Integer fAbsenteeism;
|
||||
private Integer overTime;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Byte getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Byte ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(Integer lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(Integer leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(Integer absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public Integer getfLeaveEarlyTime() {
|
||||
return this.fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setfLeaveEarlyTime(Integer fLeaveEarlyTime) {
|
||||
this.fLeaveEarlyTime = fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getfAbsenteeism() {
|
||||
return this.fAbsenteeism;
|
||||
}
|
||||
|
||||
public void setfAbsenteeism(Integer fAbsenteeism) {
|
||||
this.fAbsenteeism = fAbsenteeism;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportAddDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", personId='" + this.personId + '\'' + ", month='" + this.month + '\'' + ", ruleId='" + this.ruleId + '\'' + ", ruleType=" + this.ruleType + ", schedulingId='" + this.schedulingId + '\'' + ", shouldSign=" + this.shouldSign + ", correct=" + this.correct + ", normal=" + this.normal + ", abnormal=" + this.abnormal + ", paidLeave=" + this.paidLeave + ", goOut=" + this.goOut + ", machineException=" + this.machineException + ", vacation=" + this.vacation + ", forget=" + this.forget + ", businessTrip=" + this.businessTrip + ", lateTime=" + this.lateTime + ", leaveEarlyTime=" + this.leaveEarlyTime + ", absenteeism=" + this.absenteeism + ", fLeaveEarlyTime=" + this.fLeaveEarlyTime + ", fAbsenteeism=" + this.fAbsenteeism + ", overTime=" + this.overTime + ", createTime=" + this.createTime + ", createUserId='" + this.createUserId + '\'' + ", lastUpdateTime=" + this.lastUpdateTime + ", lastUpdateUserId='" + this.lastUpdateUserId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportDeleteDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2969420291724113453L;
|
||||
private String businessId;
|
||||
private String month;
|
||||
private String personId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportDeleteDTO{businessId='" + this.businessId + '\'' + ", month='" + this.month + '\'' + ", personId='" + this.personId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+291
@@ -0,0 +1,291 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportEditDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String month;
|
||||
private String ruleId;
|
||||
private Byte ruleType;
|
||||
private String schedulingId;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer paidLeave;
|
||||
private Integer goOut;
|
||||
private Integer machineException;
|
||||
private Integer vacation;
|
||||
private Integer forget;
|
||||
private Integer businessTrip;
|
||||
private Integer lateTime;
|
||||
private Integer leaveEarlyTime;
|
||||
private Integer absenteeism;
|
||||
private Integer fLeaveEarlyTime;
|
||||
private Integer fAbsenteeism;
|
||||
private Integer overTime;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Byte getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Byte ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(Integer lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(Integer leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(Integer absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public Integer getfLeaveEarlyTime() {
|
||||
return this.fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setfLeaveEarlyTime(Integer fLeaveEarlyTime) {
|
||||
this.fLeaveEarlyTime = fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getfAbsenteeism() {
|
||||
return this.fAbsenteeism;
|
||||
}
|
||||
|
||||
public void setfAbsenteeism(Integer fAbsenteeism) {
|
||||
this.fAbsenteeism = fAbsenteeism;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", personId=").append(this.personId);
|
||||
sb.append(", month=").append(this.month);
|
||||
sb.append(", ruleId=").append(this.ruleId);
|
||||
sb.append(", ruleType=").append(this.ruleType);
|
||||
sb.append(", schedulingId=").append(this.schedulingId);
|
||||
sb.append(", shouldSign=").append(this.shouldSign);
|
||||
sb.append(", correct=").append(this.correct);
|
||||
sb.append(", normal=").append(this.normal);
|
||||
sb.append(", abnormal=").append(this.abnormal);
|
||||
sb.append(", paidLeave=").append(this.paidLeave);
|
||||
sb.append(", goOut=").append(this.goOut);
|
||||
sb.append(", machineException=").append(this.machineException);
|
||||
sb.append(", vacation=").append(this.vacation);
|
||||
sb.append(", forget=").append(this.forget);
|
||||
sb.append(", businessTrip=").append(this.businessTrip);
|
||||
sb.append(", lateTime=").append(this.lateTime);
|
||||
sb.append(", leaveEarlyTime=").append(this.leaveEarlyTime);
|
||||
sb.append(", absenteeism=").append(this.absenteeism);
|
||||
sb.append(", fLeaveEarlyTime=").append(this.fLeaveEarlyTime);
|
||||
sb.append(", fAbsenteeism=").append(this.fAbsenteeism);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportQueryDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -261904548316936915L;
|
||||
private String businessId;
|
||||
private String month;
|
||||
private String personId;
|
||||
private String schedulingId;
|
||||
private String ruleId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportQueryDTO{businessId='" + this.businessId + '\'' + ", month='" + this.month + '\'' + ", personId='" + this.personId + '\'' + ", schedulingId='" + this.schedulingId + '\'' + ", ruleId='" + this.ruleId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+291
@@ -0,0 +1,291 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportQueryResultDTO
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personId;
|
||||
private String month;
|
||||
private String ruleId;
|
||||
private Byte ruleType;
|
||||
private String schedulingId;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer paidLeave;
|
||||
private Integer goOut;
|
||||
private Integer machineException;
|
||||
private Integer vacation;
|
||||
private Integer forget;
|
||||
private Integer businessTrip;
|
||||
private Integer lateTime;
|
||||
private Integer leaveEarlyTime;
|
||||
private Integer absenteeism;
|
||||
private Integer fLeaveEarlyTime;
|
||||
private Integer fAbsenteeism;
|
||||
private Integer overTime;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Byte getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Byte ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(Integer lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(Integer leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(Integer absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public Integer getfLeaveEarlyTime() {
|
||||
return this.fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setfLeaveEarlyTime(Integer fLeaveEarlyTime) {
|
||||
this.fLeaveEarlyTime = fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getfAbsenteeism() {
|
||||
return this.fAbsenteeism;
|
||||
}
|
||||
|
||||
public void setfAbsenteeism(Integer fAbsenteeism) {
|
||||
this.fAbsenteeism = fAbsenteeism;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(this.getClass().getSimpleName());
|
||||
sb.append(" [");
|
||||
sb.append("Hash = ").append(this.hashCode());
|
||||
sb.append(", id=").append(this.id);
|
||||
sb.append(", businessId=").append(this.businessId);
|
||||
sb.append(", personId=").append(this.personId);
|
||||
sb.append(", month=").append(this.month);
|
||||
sb.append(", ruleId=").append(this.ruleId);
|
||||
sb.append(", ruleType=").append(this.ruleType);
|
||||
sb.append(", schedulingId=").append(this.schedulingId);
|
||||
sb.append(", shouldSign=").append(this.shouldSign);
|
||||
sb.append(", correct=").append(this.correct);
|
||||
sb.append(", normal=").append(this.normal);
|
||||
sb.append(", abnormal=").append(this.abnormal);
|
||||
sb.append(", paidLeave=").append(this.paidLeave);
|
||||
sb.append(", goOut=").append(this.goOut);
|
||||
sb.append(", machineException=").append(this.machineException);
|
||||
sb.append(", vacation=").append(this.vacation);
|
||||
sb.append(", forget=").append(this.forget);
|
||||
sb.append(", businessTrip=").append(this.businessTrip);
|
||||
sb.append(", lateTime=").append(this.lateTime);
|
||||
sb.append(", leaveEarlyTime=").append(this.leaveEarlyTime);
|
||||
sb.append(", absenteeism=").append(this.absenteeism);
|
||||
sb.append(", fLeaveEarlyTime=").append(this.fLeaveEarlyTime);
|
||||
sb.append(", fAbsenteeism=").append(this.fAbsenteeism);
|
||||
sb.append(", overTime=").append(this.overTime);
|
||||
sb.append(", createTime=").append(this.createTime);
|
||||
sb.append(", createUserId=").append(this.createUserId);
|
||||
sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
sb.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
+250
@@ -0,0 +1,250 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportResultGenAddDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 79065902680660460L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String attendMonth;
|
||||
private String personId;
|
||||
private String ruleId;
|
||||
private Integer ruleType;
|
||||
private String schedulingId;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer paidLeave;
|
||||
private Integer goOut;
|
||||
private Integer machineException;
|
||||
private Integer vacation;
|
||||
private Integer forget;
|
||||
private Integer businessTrip;
|
||||
private Integer lateTime;
|
||||
private Integer leaveEarlyTime;
|
||||
private Integer absenteeism;
|
||||
private Integer fLeaveEarlyTime;
|
||||
private Integer fAbsenteeism;
|
||||
private Integer overTime;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private String orgId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getAttendMonth() {
|
||||
return this.attendMonth;
|
||||
}
|
||||
|
||||
public void setAttendMonth(String attendMonth) {
|
||||
this.attendMonth = attendMonth;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Integer getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Integer ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(Integer lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(Integer leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(Integer absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public Integer getfLeaveEarlyTime() {
|
||||
return this.fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setfLeaveEarlyTime(Integer fLeaveEarlyTime) {
|
||||
this.fLeaveEarlyTime = fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getfAbsenteeism() {
|
||||
return this.fAbsenteeism;
|
||||
}
|
||||
|
||||
public void setfAbsenteeism(Integer fAbsenteeism) {
|
||||
this.fAbsenteeism = fAbsenteeism;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportResultGenAddDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", attendMonth='" + this.attendMonth + '\'' + ", personId='" + this.personId + '\'' + ", ruleId='" + this.ruleId + '\'' + ", ruleType=" + this.ruleType + ", schedulingId='" + this.schedulingId + '\'' + ", shouldSign=" + this.shouldSign + ", correct=" + this.correct + ", normal=" + this.normal + ", abnormal=" + this.abnormal + ", paidLeave=" + this.paidLeave + ", goOut=" + this.goOut + ", machineException=" + this.machineException + ", vacation=" + this.vacation + ", forget=" + this.forget + ", businessTrip=" + this.businessTrip + ", lateTime=" + this.lateTime + ", leaveEarlyTime=" + this.leaveEarlyTime + ", absenteeism=" + this.absenteeism + ", fLeaveEarlyTime=" + this.fLeaveEarlyTime + ", fAbsenteeism=" + this.fAbsenteeism + ", overTime=" + this.overTime + ", createTime=" + this.createTime + ", lastUpdateTime=" + this.lastUpdateTime + ", orgId=" + this.orgId + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportResultGenPageDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4649530887358127749L;
|
||||
private String businessId;
|
||||
private Long startDay;
|
||||
private Long endDay;
|
||||
private String month;
|
||||
private String personId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Long getStartDay() {
|
||||
return this.startDay;
|
||||
}
|
||||
|
||||
public void setStartDay(Long startDay) {
|
||||
this.startDay = startDay;
|
||||
}
|
||||
|
||||
public Long getEndDay() {
|
||||
return this.endDay;
|
||||
}
|
||||
|
||||
public void setEndDay(Long endDay) {
|
||||
this.endDay = endDay;
|
||||
}
|
||||
|
||||
public String getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(String month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportResultGenPageDTO{businessId='" + this.businessId + '\'' + ", startDay=" + this.startDay + ", endDay=" + this.endDay + ", month='" + this.month + '\'' + ", personId='" + this.personId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+223
@@ -0,0 +1,223 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.common.ninca.attendance.bean.report;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendMonthReportResultGenQueryResultDTO
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -3071160350930992209L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String attendMonth;
|
||||
private String personId;
|
||||
private String ruleId;
|
||||
private Integer ruleType;
|
||||
private String schedulingId;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer paidLeave;
|
||||
private Integer goOut;
|
||||
private Integer machineException;
|
||||
private Integer vacation;
|
||||
private Integer forget;
|
||||
private Integer businessTrip;
|
||||
private Integer lateTime;
|
||||
private Integer leaveEarlyTime;
|
||||
private Integer absenteeism;
|
||||
private Integer fLeaveEarlyTime;
|
||||
private Integer fAbsenteeism;
|
||||
private Integer overTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getAttendMonth() {
|
||||
return this.attendMonth;
|
||||
}
|
||||
|
||||
public void setAttendMonth(String attendMonth) {
|
||||
this.attendMonth = attendMonth;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Integer getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Integer ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getSchedulingId() {
|
||||
return this.schedulingId;
|
||||
}
|
||||
|
||||
public void setSchedulingId(String schedulingId) {
|
||||
this.schedulingId = schedulingId;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getNormal() {
|
||||
return this.normal;
|
||||
}
|
||||
|
||||
public void setNormal(Integer normal) {
|
||||
this.normal = normal;
|
||||
}
|
||||
|
||||
public Integer getAbnormal() {
|
||||
return this.abnormal;
|
||||
}
|
||||
|
||||
public void setAbnormal(Integer abnormal) {
|
||||
this.abnormal = abnormal;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(Integer lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public Integer getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(Integer leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(Integer absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public Integer getfLeaveEarlyTime() {
|
||||
return this.fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setfLeaveEarlyTime(Integer fLeaveEarlyTime) {
|
||||
this.fLeaveEarlyTime = fLeaveEarlyTime;
|
||||
}
|
||||
|
||||
public Integer getfAbsenteeism() {
|
||||
return this.fAbsenteeism;
|
||||
}
|
||||
|
||||
public void setfAbsenteeism(Integer fAbsenteeism) {
|
||||
this.fAbsenteeism = fAbsenteeism;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendMonthReportResultGenQueryResultDTO{id='" + this.id + '\'' + ", businessId='" + this.businessId + '\'' + ", attendMonth='" + this.attendMonth + '\'' + ", personId='" + this.personId + '\'' + ", ruleId='" + this.ruleId + '\'' + ", ruleType=" + this.ruleType + ", schedulingId='" + this.schedulingId + '\'' + ", shouldSign=" + this.shouldSign + ", correct=" + this.correct + ", normal=" + this.normal + ", abnormal=" + this.abnormal + ", paidLeave=" + this.paidLeave + ", goOut=" + this.goOut + ", machineException=" + this.machineException + ", vacation=" + this.vacation + ", forget=" + this.forget + ", businessTrip=" + this.businessTrip + ", lateTime=" + this.lateTime + ", leaveEarlyTime=" + this.leaveEarlyTime + ", absenteeism=" + this.absenteeism + ", fLeaveEarlyTime=" + this.fLeaveEarlyTime + ", fAbsenteeism=" + this.fAbsenteeism + ", overTime=" + this.overTime + '}';
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user