mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
feat: add service config templates and extraction script
Former-commit-id: 1de24b7eb79676d1aba9d799a58c5a753290cf52
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>cn.cloudwalk.ninca</groupId>
|
||||
<artifactId>ninca-crk-from-lib-reactor</artifactId>
|
||||
<version>2.9.1_210630-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>ninca-crk-smart-attendance-interface</artifactId>
|
||||
<name>ninca-crk-smart-attendance-interface</name>
|
||||
<description>CFR from ninca-crk-smart-attendance-interface-2.9.1_210630-SNAPSHOT.jar (embedded pom: none)</description>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.cloudwalk.cloud</groupId>
|
||||
<artifactId>cloudwalk-common-result</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.cloudwalk.ninca</groupId>
|
||||
<artifactId>ninca-crk-portal-resource-stubs</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.capture.param;
|
||||
|
||||
public class CaptureFeatureQueryParam {
|
||||
private String deviceCode;
|
||||
private String imagePath;
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getImagePath() {
|
||||
return this.imagePath;
|
||||
}
|
||||
|
||||
public void setImagePath(String imagePath) {
|
||||
this.imagePath = imagePath;
|
||||
}
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.client.cwoscomponent.intelligent.biology.result.FeatureQueryResult
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.capture.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.biology.result.FeatureQueryResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.capture.param.CaptureFeatureQueryParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface BiologyFeatureService {
|
||||
public FeatureQueryResult featureQuery(CaptureFeatureQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.common;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface AttendApplicationService {
|
||||
public String getApplicationId(String var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.common;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public interface AttendCommonDeviceService {
|
||||
public BigDecimal getDeviceThreshold(String var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendClassAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7023015253349235979L;
|
||||
@NotEmpty(message="76240306")
|
||||
private String name;
|
||||
@NotEmpty(message="76240307")
|
||||
private List<String> deviceIds;
|
||||
@NotEmpty(message="76240308")
|
||||
private List<String> orgIds;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
}
|
||||
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendClassDeleteParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -8142458216101013028L;
|
||||
@NotEmpty(message="76240305")
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendClassEdParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 9214249789726487160L;
|
||||
@NotEmpty(message="76240305")
|
||||
private String id;
|
||||
@NotNull(message="76240309")
|
||||
private Integer isEnable;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
}
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendClassEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3461474304587729941L;
|
||||
@NotEmpty(message="76240305")
|
||||
private String id;
|
||||
@NotEmpty(message="76240306")
|
||||
private String name;
|
||||
@NotEmpty(message="76240307")
|
||||
private List<String> deviceIds;
|
||||
@NotEmpty(message="76240308")
|
||||
private List<String> orgIds;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
}
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
public class AttendClassPageParam {
|
||||
private static final long serialVersionUID = -5585227812212747955L;
|
||||
private String name;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5740662633593246519L;
|
||||
private Integer isEnable;
|
||||
|
||||
public Integer getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(Integer isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
}
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingDetailParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6144374089976678640L;
|
||||
private String personName;
|
||||
private String classId;
|
||||
private Long schedulingStartDate;
|
||||
private Long schedulingEndDate;
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingExecuteParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 3665869339314187777L;
|
||||
private Integer schedulingType;
|
||||
private String classId;
|
||||
private String personId;
|
||||
private long schedulingDate;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingSelfParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -770823400493068107L;
|
||||
private long schedulingStartDate;
|
||||
private long schedulingEndDate;
|
||||
private String personId;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingWorkDaySetParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7208916103658714164L;
|
||||
private String workDays;
|
||||
private String id;
|
||||
|
||||
public String getWorkDays() {
|
||||
return this.workDays;
|
||||
}
|
||||
|
||||
public void setWorkDays(String workDays) {
|
||||
this.workDays = workDays;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendClassSubDetailQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5740662633593246519L;
|
||||
@NotEmpty(message="76240313")
|
||||
private String classId;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
}
|
||||
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7906341311899784377L;
|
||||
private String shiftName;
|
||||
private int shiftType;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private String isNextDay;
|
||||
private int attendDays;
|
||||
private String endAdaptTime;
|
||||
private String startAdaptTime;
|
||||
private String periodDesc;
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
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 String getIsNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setIsNextDay(String isNextDay) {
|
||||
this.isNextDay = isNextDay;
|
||||
}
|
||||
|
||||
public int getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(int attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftDeleteParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1179117109013950591L;
|
||||
private String shiftId;
|
||||
private String shiftName;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+183
@@ -0,0 +1,183 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4734161657379721040L;
|
||||
private String shiftId;
|
||||
private String shiftName;
|
||||
private int shiftType;
|
||||
private String startWorkTime;
|
||||
private String endWorkTime;
|
||||
private String isNextDay;
|
||||
private int attendDays;
|
||||
private String endAdaptTime;
|
||||
private String startAdaptTime;
|
||||
private int afterTime;
|
||||
private int beforeTime;
|
||||
private int absentTime;
|
||||
private String periodDesc;
|
||||
private String standardTime;
|
||||
private int overTime;
|
||||
private int sortValue;
|
||||
private long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private int isEnable;
|
||||
|
||||
public int getIsEnable() {
|
||||
return this.isEnable;
|
||||
}
|
||||
|
||||
public void setIsEnable(int isEnable) {
|
||||
this.isEnable = isEnable;
|
||||
}
|
||||
|
||||
public String getPeriodDesc() {
|
||||
return this.periodDesc;
|
||||
}
|
||||
|
||||
public void setPeriodDesc(String periodDesc) {
|
||||
this.periodDesc = periodDesc;
|
||||
}
|
||||
|
||||
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 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 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 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 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 getIsNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setIsNextDay(String 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;
|
||||
}
|
||||
}
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassDeviceQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private Byte 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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte 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(", ruleId=").append(this.ruleId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassImagestoreQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
|
||||
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(", ruleId=").append(this.ruleId);
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassOrgQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String classId;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
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 String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
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(", orgName=").append(this.orgName);
|
||||
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.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassPagePersonResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1074495163640664092L;
|
||||
private String personId;
|
||||
private String personName;
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
}
|
||||
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassPagePersonResult;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassPageResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1811962058150186655L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private List<AttendClassPagePersonResult> personList;
|
||||
private Integer personCount;
|
||||
private Boolean hasUsed;
|
||||
|
||||
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 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 List<AttendClassPagePersonResult> getPersonList() {
|
||||
return this.personList;
|
||||
}
|
||||
|
||||
public void setPersonList(List<AttendClassPagePersonResult> personList) {
|
||||
this.personList = personList;
|
||||
}
|
||||
|
||||
public Integer getPersonCount() {
|
||||
return this.personCount;
|
||||
}
|
||||
|
||||
public void setPersonCount(Integer personCount) {
|
||||
this.personCount = personCount;
|
||||
}
|
||||
|
||||
public Boolean getHasUsed() {
|
||||
return this.hasUsed;
|
||||
}
|
||||
|
||||
public void setHasUsed(Boolean hasUsed) {
|
||||
this.hasUsed = hasUsed;
|
||||
}
|
||||
}
|
||||
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4317840894871564916L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private Integer isEnable;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.DavinciPic
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassSchedulingResult;
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.DavinciPic;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendClassSchedulingDetailResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1036434535027216923L;
|
||||
@DavinciPic
|
||||
private String faceImagePath;
|
||||
private String personName;
|
||||
private String personId;
|
||||
private String classId;
|
||||
private List<AttendClassSchedulingResult> schedulingList;
|
||||
|
||||
public String getClassId() {
|
||||
return this.classId;
|
||||
}
|
||||
|
||||
public void setClassId(String classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getFaceImagePath() {
|
||||
return this.faceImagePath;
|
||||
}
|
||||
|
||||
public void setFaceImagePath(String 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 List<AttendClassSchedulingResult> getSchedulingList() {
|
||||
return this.schedulingList;
|
||||
}
|
||||
|
||||
public void setSchedulingList(List<AttendClassSchedulingResult> schedulingList) {
|
||||
this.schedulingList = schedulingList;
|
||||
}
|
||||
}
|
||||
|
||||
+118
@@ -0,0 +1,118 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.ExcelBytesAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute;
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.ExcelBytesAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingExcelResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5893890328242188252L;
|
||||
private String faceImagePath;
|
||||
@ExcelAttribute(name="\u4eba\u8138", column="A", isPic=true)
|
||||
@ExcelBytesAttribute(pathField="faceImagePath")
|
||||
private byte[] faceImagePathBytes;
|
||||
@ExcelAttribute(name="\u4eba\u5458\u540d\u79f0", column="B")
|
||||
private String personName;
|
||||
@ExcelAttribute(name="\u5468\u4e00", column="C")
|
||||
private String monday;
|
||||
@ExcelAttribute(name="\u5468\u4e8c", column="D")
|
||||
private String tuesday;
|
||||
@ExcelAttribute(name="\u5468\u4e09", column="E")
|
||||
private String wednesday;
|
||||
@ExcelAttribute(name="\u5468\u56db", column="F")
|
||||
private String thursday;
|
||||
@ExcelAttribute(name="\u5468\u4e94", column="G")
|
||||
private String friday;
|
||||
@ExcelAttribute(name="\u5468\u516d", column="H")
|
||||
private String saturday;
|
||||
@ExcelAttribute(name="\u5468\u65e5", column="I")
|
||||
private String sunday;
|
||||
|
||||
public String getFaceImagePath() {
|
||||
return this.faceImagePath;
|
||||
}
|
||||
|
||||
public void setFaceImagePath(String faceImagePath) {
|
||||
this.faceImagePath = faceImagePath;
|
||||
}
|
||||
|
||||
public byte[] getFaceImagePathBytes() {
|
||||
return this.faceImagePathBytes;
|
||||
}
|
||||
|
||||
public void setFaceImagePathBytes(byte[] faceImagePathBytes) {
|
||||
this.faceImagePathBytes = faceImagePathBytes;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getMonday() {
|
||||
return this.monday;
|
||||
}
|
||||
|
||||
public void setMonday(String monday) {
|
||||
this.monday = monday;
|
||||
}
|
||||
|
||||
public String getTuesday() {
|
||||
return this.tuesday;
|
||||
}
|
||||
|
||||
public void setTuesday(String tuesday) {
|
||||
this.tuesday = tuesday;
|
||||
}
|
||||
|
||||
public String getWednesday() {
|
||||
return this.wednesday;
|
||||
}
|
||||
|
||||
public void setWednesday(String wednesday) {
|
||||
this.wednesday = wednesday;
|
||||
}
|
||||
|
||||
public String getThursday() {
|
||||
return this.thursday;
|
||||
}
|
||||
|
||||
public void setThursday(String thursday) {
|
||||
this.thursday = thursday;
|
||||
}
|
||||
|
||||
public String getFriday() {
|
||||
return this.friday;
|
||||
}
|
||||
|
||||
public void setFriday(String friday) {
|
||||
this.friday = friday;
|
||||
}
|
||||
|
||||
public String getSaturday() {
|
||||
return this.saturday;
|
||||
}
|
||||
|
||||
public void setSaturday(String saturday) {
|
||||
this.saturday = saturday;
|
||||
}
|
||||
|
||||
public String getSunday() {
|
||||
return this.sunday;
|
||||
}
|
||||
|
||||
public void setSunday(String sunday) {
|
||||
this.sunday = sunday;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingPublishResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 9220164374498259766L;
|
||||
private boolean publishResult;
|
||||
|
||||
public boolean isPublishResult() {
|
||||
return this.publishResult;
|
||||
}
|
||||
|
||||
public void setPublishResult(boolean publishResult) {
|
||||
this.publishResult = publishResult;
|
||||
}
|
||||
}
|
||||
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1107568395079428990L;
|
||||
private long date;
|
||||
private String shiftId;
|
||||
private String shiftName;
|
||||
private int isEnable;
|
||||
private int isEdit;
|
||||
private int isRest;
|
||||
private Integer attendDays;
|
||||
|
||||
public Integer getAttendDays() {
|
||||
return this.attendDays;
|
||||
}
|
||||
|
||||
public void setAttendDays(Integer attendDays) {
|
||||
this.attendDays = attendDays;
|
||||
}
|
||||
|
||||
public int getIsRest() {
|
||||
return this.isRest;
|
||||
}
|
||||
|
||||
public void setIsRest(int isRest) {
|
||||
this.isRest = isRest;
|
||||
}
|
||||
|
||||
public int getIsEdit() {
|
||||
return this.isEdit;
|
||||
}
|
||||
|
||||
public void setIsEdit(int isEdit) {
|
||||
this.isEdit = isEdit;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingSelfResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1615754748331853305L;
|
||||
private long date;
|
||||
private String shiftName;
|
||||
private String shiftId;
|
||||
private int isRest;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendClassSchedulingWorkDayResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8098279141001644918L;
|
||||
private String periodDays;
|
||||
private String businessId;
|
||||
private String workDays;
|
||||
|
||||
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 String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
}
|
||||
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftAddResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1805405597192484257L;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+120
@@ -0,0 +1,120 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendShiftDetailResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5507761746198416055L;
|
||||
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 int isNextDay;
|
||||
|
||||
public int getIsNextDay() {
|
||||
return this.isNextDay;
|
||||
}
|
||||
|
||||
public void setIsNextDay(int isNextDay) {
|
||||
this.isNextDay = isNextDay;
|
||||
}
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendCheckService {
|
||||
public CloudwalkResult<Boolean> checkShift(String var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> checkClass(String var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSubDetailQueryParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassDeviceQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendClassDeviceService {
|
||||
public CloudwalkResult<List<AttendClassDeviceQueryResult>> query(AttendClassSubDetailQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSubDetailQueryParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassImagestoreQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendClassImagestoreService {
|
||||
public CloudwalkResult<List<AttendClassImagestoreQueryResult>> query(AttendClassSubDetailQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSubDetailQueryParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassOrgQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendClassOrgService {
|
||||
public CloudwalkResult<List<AttendClassOrgQueryResult>> query(AttendClassSubDetailQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSchedulingDetailParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSchedulingExecuteParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSchedulingSelfParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassSchedulingWorkDaySetParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassSchedulingDetailResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassSchedulingPublishResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassSchedulingSelfResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassSchedulingWorkDayResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendClassSchedulingService {
|
||||
public CloudwalkResult<List<AttendClassSchedulingDetailResult>> queryDetail(AttendClassSchedulingDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3, boolean var4) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<AttendClassSchedulingSelfResult>> querySelfDetail(AttendClassSchedulingSelfParam var1, CloudwalkCallContext var2, boolean var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> schedulingExecute(AttendClassSchedulingExecuteParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3, String var4) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<AttendClassSchedulingPublishResult>> schedulingPublish(AttendClassSchedulingDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3, boolean var4, String var5) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Long> getPublishTime(AttendClassSchedulingDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> getPublish(AttendClassSchedulingDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> workDaySet(AttendClassSchedulingWorkDaySetParam var1, CloudwalkCallContext var2, String var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<AttendClassSchedulingWorkDayResult> workDayQuery(CloudwalkCallContext var1, String var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> cancel(AttendClassSchedulingDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3, String var4) throws ServiceException;
|
||||
}
|
||||
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassAddParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassDeleteParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassEdParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassEditParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassPageParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendClassQueryParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassPageResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendClassQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendClassService {
|
||||
public CloudwalkResult<CloudwalkPageAble<AttendClassPageResult>> page(AttendClassPageParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> add(AttendClassAddParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> edit(AttendClassEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> ed(AttendClassEdParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> delete(AttendClassDeleteParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<AttendClassQueryResult>> query(AttendClassQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.config.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendShiftAddParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendShiftDeleteParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.param.AttendShiftEditParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.config.result.AttendShiftDetailResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendShiftService {
|
||||
public CloudwalkResult<CloudwalkPageAble<AttendShiftDetailResult>> queryShiftPage(CloudwalkPageInfo var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public List<AttendShiftDetailResult> queryShift(CloudwalkCallContext var1) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> addShift(AttendShiftAddParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> deleteShift(AttendShiftDeleteParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> editShift(AttendShiftEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> enableShift(AttendShiftEditParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkBasePageForm
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.device.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendDeviceNewPageParam
|
||||
extends CloudwalkBasePageForm
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5688215744877695100L;
|
||||
private String areaId;
|
||||
private String deviceName;
|
||||
private String districtId;
|
||||
private List<String> districtIds;
|
||||
|
||||
public static long getSerialVersionUID() {
|
||||
return 5688215744877695100L;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
|
||||
public List<String> getDistrictIds() {
|
||||
return this.districtIds;
|
||||
}
|
||||
|
||||
public void setDistrictIds(List<String> districtIds) {
|
||||
this.districtIds = districtIds;
|
||||
}
|
||||
}
|
||||
|
||||
+315
@@ -0,0 +1,315 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.device.result;
|
||||
|
||||
public class AttendDeviceResult {
|
||||
private static final long serialVersionUID = -5356689053916559467L;
|
||||
private String id;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private String deviceCode;
|
||||
private String deviceTypeId;
|
||||
private String deviceTypeCode;
|
||||
private String deviceTypeIdTree;
|
||||
private String deviceTypeName;
|
||||
private String deviceName;
|
||||
private String status;
|
||||
private String onlineStatus;
|
||||
private Long lastHeartbeatTime;
|
||||
private String longitude;
|
||||
private String latitude;
|
||||
private String cameraUserName;
|
||||
private String cameraPassword;
|
||||
private String cameraMainRtspUrl;
|
||||
private String cameraIp;
|
||||
private String cameraVmsRtspUrl;
|
||||
private String protocol;
|
||||
private String districtId;
|
||||
private String districtName;
|
||||
private String districtPath;
|
||||
private String districtMergeName;
|
||||
private String areaId;
|
||||
private String areaName;
|
||||
private String areaAddr;
|
||||
private int identifyType;
|
||||
private int isAutoSync;
|
||||
private String snapshotProtocol;
|
||||
private String remark;
|
||||
private String deviceNetworkIp;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
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 getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceTypeId() {
|
||||
return this.deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(String deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public String getDeviceTypeCode() {
|
||||
return this.deviceTypeCode;
|
||||
}
|
||||
|
||||
public void setDeviceTypeCode(String deviceTypeCode) {
|
||||
this.deviceTypeCode = deviceTypeCode;
|
||||
}
|
||||
|
||||
public String getDeviceTypeIdTree() {
|
||||
return this.deviceTypeIdTree;
|
||||
}
|
||||
|
||||
public void setDeviceTypeIdTree(String deviceTypeIdTree) {
|
||||
this.deviceTypeIdTree = deviceTypeIdTree;
|
||||
}
|
||||
|
||||
public String getDeviceTypeName() {
|
||||
return this.deviceTypeName;
|
||||
}
|
||||
|
||||
public void setDeviceTypeName(String deviceTypeName) {
|
||||
this.deviceTypeName = deviceTypeName;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getOnlineStatus() {
|
||||
return this.onlineStatus;
|
||||
}
|
||||
|
||||
public void setOnlineStatus(String onlineStatus) {
|
||||
this.onlineStatus = onlineStatus;
|
||||
}
|
||||
|
||||
public Long getLastHeartbeatTime() {
|
||||
return this.lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public void setLastHeartbeatTime(Long lastHeartbeatTime) {
|
||||
this.lastHeartbeatTime = lastHeartbeatTime;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return this.longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return this.latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getCameraUserName() {
|
||||
return this.cameraUserName;
|
||||
}
|
||||
|
||||
public void setCameraUserName(String cameraUserName) {
|
||||
this.cameraUserName = cameraUserName;
|
||||
}
|
||||
|
||||
public String getCameraPassword() {
|
||||
return this.cameraPassword;
|
||||
}
|
||||
|
||||
public void setCameraPassword(String cameraPassword) {
|
||||
this.cameraPassword = cameraPassword;
|
||||
}
|
||||
|
||||
public String getCameraMainRtspUrl() {
|
||||
return this.cameraMainRtspUrl;
|
||||
}
|
||||
|
||||
public void setCameraMainRtspUrl(String cameraMainRtspUrl) {
|
||||
this.cameraMainRtspUrl = cameraMainRtspUrl;
|
||||
}
|
||||
|
||||
public String getCameraVmsRtspUrl() {
|
||||
return this.cameraVmsRtspUrl;
|
||||
}
|
||||
|
||||
public void setCameraVmsRtspUrl(String cameraVmsRtspUrl) {
|
||||
this.cameraVmsRtspUrl = cameraVmsRtspUrl;
|
||||
}
|
||||
|
||||
public String getProtocol() {
|
||||
return this.protocol;
|
||||
}
|
||||
|
||||
public void setProtocol(String protocol) {
|
||||
this.protocol = protocol;
|
||||
}
|
||||
|
||||
public String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
|
||||
public String getDistrictName() {
|
||||
return this.districtName;
|
||||
}
|
||||
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
public String getDistrictPath() {
|
||||
return this.districtPath;
|
||||
}
|
||||
|
||||
public void setDistrictPath(String districtPath) {
|
||||
this.districtPath = districtPath;
|
||||
}
|
||||
|
||||
public String getDistrictMergeName() {
|
||||
return this.districtMergeName;
|
||||
}
|
||||
|
||||
public void setDistrictMergeName(String districtMergeName) {
|
||||
this.districtMergeName = districtMergeName;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public String getAreaName() {
|
||||
return this.areaName;
|
||||
}
|
||||
|
||||
public void setAreaName(String areaName) {
|
||||
this.areaName = areaName;
|
||||
}
|
||||
|
||||
public String getAreaAddr() {
|
||||
return this.areaAddr;
|
||||
}
|
||||
|
||||
public void setAreaAddr(String areaAddr) {
|
||||
this.areaAddr = areaAddr;
|
||||
}
|
||||
|
||||
public int getIdentifyType() {
|
||||
return this.identifyType;
|
||||
}
|
||||
|
||||
public void setIdentifyType(int identifyType) {
|
||||
this.identifyType = identifyType;
|
||||
}
|
||||
|
||||
public int getIsAutoSync() {
|
||||
return this.isAutoSync;
|
||||
}
|
||||
|
||||
public void setIsAutoSync(int isAutoSync) {
|
||||
this.isAutoSync = isAutoSync;
|
||||
}
|
||||
|
||||
public String getSnapshotProtocol() {
|
||||
return this.snapshotProtocol;
|
||||
}
|
||||
|
||||
public void setSnapshotProtocol(String snapshotProtocol) {
|
||||
this.snapshotProtocol = snapshotProtocol;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getDeviceNetworkIp() {
|
||||
return this.deviceNetworkIp;
|
||||
}
|
||||
|
||||
public void setDeviceNetworkIp(String deviceNetworkIp) {
|
||||
this.deviceNetworkIp = deviceNetworkIp;
|
||||
}
|
||||
|
||||
public String getCameraIp() {
|
||||
return this.cameraIp;
|
||||
}
|
||||
|
||||
public void setCameraIp(String cameraIp) {
|
||||
this.cameraIp = cameraIp;
|
||||
}
|
||||
}
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.device.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.device.param.AttendDeviceNewPageParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.device.result.AttendDeviceResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendDeviceService {
|
||||
public CloudwalkResult<CloudwalkPageAble<AttendDeviceResult>> page(AttendDeviceNewPageParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.downloadcenter.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendFileFinishParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 4334332744642479052L;
|
||||
private String fileId;
|
||||
private Long fileSize;
|
||||
private String filePath;
|
||||
private Integer fileStatus;
|
||||
private String errorCode;
|
||||
private String errorMessage;
|
||||
|
||||
public String getFileId() {
|
||||
return this.fileId;
|
||||
}
|
||||
|
||||
public void setFileId(String fileId) {
|
||||
this.fileId = fileId;
|
||||
}
|
||||
|
||||
public Long getFileSize() {
|
||||
return this.fileSize;
|
||||
}
|
||||
|
||||
public void setFileSize(Long fileSize) {
|
||||
this.fileSize = fileSize;
|
||||
}
|
||||
|
||||
public String getFilePath() {
|
||||
return this.filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public Integer getFileStatus() {
|
||||
return this.fileStatus;
|
||||
}
|
||||
|
||||
public void setFileStatus(Integer fileStatus) {
|
||||
this.fileStatus = fileStatus;
|
||||
}
|
||||
|
||||
public String getErrorCode() {
|
||||
return this.errorCode;
|
||||
}
|
||||
|
||||
public void setErrorCode(String errorCode) {
|
||||
this.errorCode = errorCode;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.downloadcenter.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.downloadcenter.param.AttendFileFinishParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
|
||||
public interface AttendDownloadCenterService {
|
||||
public String createDownload(String var1, CloudwalkCallContext var2);
|
||||
|
||||
public boolean finishDownload(AttendFileFinishParam var1, CloudwalkCallContext var2);
|
||||
|
||||
public int queryDownloadStatus(String var1, CloudwalkCallContext var2);
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.holiday.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class HolidayListParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -5080091906156335575L;
|
||||
private Long startDate;
|
||||
private Long endDate;
|
||||
|
||||
public Long getStartDate() {
|
||||
return this.startDate;
|
||||
}
|
||||
|
||||
public void setStartDate(Long startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
|
||||
public Long getEndDate() {
|
||||
return this.endDate;
|
||||
}
|
||||
|
||||
public void setEndDate(Long endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.holiday.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.holiday.param.HolidayListParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.result.AttendRuleHolidayQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface HolidayService {
|
||||
public CloudwalkResult<List<AttendRuleHolidayQueryResult>> list(HolidayListParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendDayReportQueryParam
|
||||
implements Serializable {
|
||||
@NotNull(message="76240501")
|
||||
private Long startTime;
|
||||
@NotNull(message="76240502")
|
||||
private Long endTime;
|
||||
@NotEmpty(message="76240503")
|
||||
private String businessId;
|
||||
|
||||
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 getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
}
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendReportCorrectionParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1346571935094000678L;
|
||||
@NotEmpty(message="76240220")
|
||||
private String id;
|
||||
@NotNull(message="76240227")
|
||||
private Integer reason;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getReason() {
|
||||
return this.reason;
|
||||
}
|
||||
|
||||
public void setReason(Integer reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendReportCorrectionParam{id='" + this.id + '\'' + ", reason=" + this.reason + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+95
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class AttendReportDetailParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6880191911395022503L;
|
||||
@NotNull(message="76240218")
|
||||
private Long startDay;
|
||||
@NotNull(message="76240219")
|
||||
private Long endDay;
|
||||
@Size(max=999)
|
||||
private List<String> orgIds;
|
||||
@Size(max=999)
|
||||
private List<String> personIds;
|
||||
private Integer state;
|
||||
private Integer initStatus;
|
||||
private List<String> roleIds;
|
||||
private List<String> labelIds;
|
||||
|
||||
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 List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public Integer getState() {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public void setState(Integer state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public Integer getInitStatus() {
|
||||
return this.initStatus;
|
||||
}
|
||||
|
||||
public void setInitStatus(Integer initStatus) {
|
||||
this.initStatus = initStatus;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class AttendReportRecordParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7732759759341072712L;
|
||||
@NotNull(message="76240218")
|
||||
private Long startDay;
|
||||
@NotNull(message="76240219")
|
||||
private Long endDay;
|
||||
@Size(max=999)
|
||||
private List<String> orgIds;
|
||||
private List<String> roleIds;
|
||||
|
||||
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 List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
}
|
||||
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class AttendReportStatisticalParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7428030761683080643L;
|
||||
@NotNull(message="76240218")
|
||||
private Long startDay;
|
||||
@NotNull(message="76240219")
|
||||
private Long endDay;
|
||||
@Size(max=999)
|
||||
private List<String> orgIds;
|
||||
@Size(max=999)
|
||||
private List<String> personIds;
|
||||
private Integer state;
|
||||
private List<String> roleIds;
|
||||
private List<String> labelIds;
|
||||
|
||||
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 List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public Integer getState() {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public void setState(Integer state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
}
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendDayReportQueryResult
|
||||
implements Serializable {
|
||||
private Integer normalNum = 0;
|
||||
private Integer lateNum = 0;
|
||||
private Integer earlyNum = 0;
|
||||
private Integer totalNum = 0;
|
||||
|
||||
public Integer getNormalNum() {
|
||||
return this.normalNum;
|
||||
}
|
||||
|
||||
public void setNormalNum(Integer normalNum) {
|
||||
this.normalNum = normalNum;
|
||||
}
|
||||
|
||||
public Integer getLateNum() {
|
||||
return this.lateNum;
|
||||
}
|
||||
|
||||
public void setLateNum(Integer lateNum) {
|
||||
this.lateNum = lateNum;
|
||||
}
|
||||
|
||||
public Integer getEarlyNum() {
|
||||
return this.earlyNum;
|
||||
}
|
||||
|
||||
public void setEarlyNum(Integer earlyNum) {
|
||||
this.earlyNum = earlyNum;
|
||||
}
|
||||
|
||||
public Integer getTotalNum() {
|
||||
return this.totalNum;
|
||||
}
|
||||
|
||||
public void setTotalNum(Integer totalNum) {
|
||||
this.totalNum = totalNum;
|
||||
}
|
||||
}
|
||||
|
||||
+236
@@ -0,0 +1,236 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendReportDetailExcelResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1990582671319578335L;
|
||||
@ExcelAttribute(name="\u65e5\u671f", column="A")
|
||||
private String attDay;
|
||||
@ExcelAttribute(name="\u59d3\u540d", column="B")
|
||||
private String personName;
|
||||
@ExcelAttribute(name="\u624b\u673a\u53f7", column="C")
|
||||
private String telephone;
|
||||
@ExcelAttribute(name="\u7ec4\u7ec7", column="D")
|
||||
private String orgName;
|
||||
@ExcelAttribute(name="\u6807\u7b7e", column="E")
|
||||
private String labelNames;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u540d\u79f0", column="F")
|
||||
private String ruleName;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u7c7b\u578b", column="G")
|
||||
private String ruleType;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u65f6\u6bb5", column="H")
|
||||
private String ruleAttendTime;
|
||||
@ExcelAttribute(name="\u6253\u5361\u6b21\u6570", column="I")
|
||||
private Integer signCount;
|
||||
@ExcelAttribute(name="\u4e0a\u73ed\u65f6\u95f4", column="J")
|
||||
private String startWorkTime;
|
||||
@ExcelAttribute(name="\u4e0a\u73ed\u6253\u5361\u8bbe\u5907", column="K")
|
||||
private String startDeviceName;
|
||||
@ExcelAttribute(name="\u4e0a\u73ed\u6253\u5361\u5730\u5740", column="L")
|
||||
private String startDeviceAddress;
|
||||
@ExcelAttribute(name="\u4e0b\u73ed\u65f6\u95f4", column="M")
|
||||
private String endWorkTime;
|
||||
@ExcelAttribute(name="\u4e0b\u73ed\u6253\u5361\u8bbe\u5907", column="N")
|
||||
private String endDeviceName;
|
||||
@ExcelAttribute(name="\u4e0b\u73ed\u6253\u5361\u5730\u5740", column="O")
|
||||
private String endDeviceAddress;
|
||||
@ExcelAttribute(name="\u5de5\u4f5c\u65f6\u957f", column="P")
|
||||
private String workHours;
|
||||
@ExcelAttribute(name="\u521d\u59cb\u72b6\u6001", column="Q")
|
||||
private String initStatus;
|
||||
@ExcelAttribute(name="\u5f02\u5e38\u63cf\u8ff0", column="R")
|
||||
private String reasonDesc;
|
||||
@ExcelAttribute(name="\u4fee\u6b63\u539f\u56e0", column="S")
|
||||
private String reason;
|
||||
@ExcelAttribute(name="\u6700\u7ec8\u72b6\u6001", column="T")
|
||||
private String endStatus;
|
||||
@ExcelAttribute(name="\u662f\u5426\u52a0\u73ed", column="U")
|
||||
private String isOverTime;
|
||||
@ExcelAttribute(name="\u52a0\u73ed\u65f6\u957f", column="V")
|
||||
private String overTime;
|
||||
|
||||
public String getAttDay() {
|
||||
return this.attDay;
|
||||
}
|
||||
|
||||
public void setAttDay(String attDay) {
|
||||
this.attDay = attDay;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
public String getLabelNames() {
|
||||
return this.labelNames;
|
||||
}
|
||||
|
||||
public void setLabelNames(String labelNames) {
|
||||
this.labelNames = labelNames;
|
||||
}
|
||||
|
||||
public String getRuleName() {
|
||||
return this.ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
public String getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(String ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public String getRuleAttendTime() {
|
||||
return this.ruleAttendTime;
|
||||
}
|
||||
|
||||
public void setRuleAttendTime(String ruleAttendTime) {
|
||||
this.ruleAttendTime = ruleAttendTime;
|
||||
}
|
||||
|
||||
public Integer getSignCount() {
|
||||
return this.signCount;
|
||||
}
|
||||
|
||||
public void setSignCount(Integer signCount) {
|
||||
this.signCount = signCount;
|
||||
}
|
||||
|
||||
public String getStartWorkTime() {
|
||||
return this.startWorkTime;
|
||||
}
|
||||
|
||||
public void setStartWorkTime(String startWorkTime) {
|
||||
this.startWorkTime = startWorkTime;
|
||||
}
|
||||
|
||||
public String getStartDeviceName() {
|
||||
return this.startDeviceName;
|
||||
}
|
||||
|
||||
public void setStartDeviceName(String startDeviceName) {
|
||||
this.startDeviceName = startDeviceName;
|
||||
}
|
||||
|
||||
public String getStartDeviceAddress() {
|
||||
return this.startDeviceAddress;
|
||||
}
|
||||
|
||||
public void setStartDeviceAddress(String startDeviceAddress) {
|
||||
this.startDeviceAddress = startDeviceAddress;
|
||||
}
|
||||
|
||||
public String getEndWorkTime() {
|
||||
return this.endWorkTime;
|
||||
}
|
||||
|
||||
public void setEndWorkTime(String endWorkTime) {
|
||||
this.endWorkTime = endWorkTime;
|
||||
}
|
||||
|
||||
public String getEndDeviceName() {
|
||||
return this.endDeviceName;
|
||||
}
|
||||
|
||||
public void setEndDeviceName(String endDeviceName) {
|
||||
this.endDeviceName = endDeviceName;
|
||||
}
|
||||
|
||||
public String getEndDeviceAddress() {
|
||||
return this.endDeviceAddress;
|
||||
}
|
||||
|
||||
public void setEndDeviceAddress(String endDeviceAddress) {
|
||||
this.endDeviceAddress = endDeviceAddress;
|
||||
}
|
||||
|
||||
public String getWorkHours() {
|
||||
return this.workHours;
|
||||
}
|
||||
|
||||
public void setWorkHours(String workHours) {
|
||||
this.workHours = workHours;
|
||||
}
|
||||
|
||||
public String getInitStatus() {
|
||||
return this.initStatus;
|
||||
}
|
||||
|
||||
public void setInitStatus(String initStatus) {
|
||||
this.initStatus = initStatus;
|
||||
}
|
||||
|
||||
public String getReasonDesc() {
|
||||
return this.reasonDesc;
|
||||
}
|
||||
|
||||
public void setReasonDesc(String reasonDesc) {
|
||||
this.reasonDesc = reasonDesc;
|
||||
}
|
||||
|
||||
public String getReason() {
|
||||
return this.reason;
|
||||
}
|
||||
|
||||
public void setReason(String reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
public String getEndStatus() {
|
||||
return this.endStatus;
|
||||
}
|
||||
|
||||
public void setEndStatus(String endStatus) {
|
||||
this.endStatus = endStatus;
|
||||
}
|
||||
|
||||
public String getIsOverTime() {
|
||||
return this.isOverTime;
|
||||
}
|
||||
|
||||
public void setIsOverTime(String isOverTime) {
|
||||
this.isOverTime = isOverTime;
|
||||
}
|
||||
|
||||
public String getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(String overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
}
|
||||
|
||||
+274
@@ -0,0 +1,274 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendReportDetailResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2068768406163986494L;
|
||||
private String id;
|
||||
private String orgName;
|
||||
private String personName;
|
||||
private String personId;
|
||||
private Long attDay;
|
||||
private Long startWorkTime;
|
||||
private Long endWorkTime;
|
||||
private String ruleName;
|
||||
private String ruleId;
|
||||
private Integer ruleType;
|
||||
private Integer reason;
|
||||
private Long correctTime;
|
||||
private Integer initStatus;
|
||||
private Integer endStatus;
|
||||
private String workHours;
|
||||
private Integer startWorkState;
|
||||
private Integer endWorkState;
|
||||
private Long ruleStartWorkTime;
|
||||
private Long ruleEndWorkTime;
|
||||
private String telephone;
|
||||
private Integer isOverTime;
|
||||
private String overTime;
|
||||
private Integer signCount;
|
||||
private String reasonDesc;
|
||||
private String startDeviceName;
|
||||
private String startDeviceAddress;
|
||||
private String endDeviceName;
|
||||
private String endDeviceAddress;
|
||||
private List<String> labelNames;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
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 getAttDay() {
|
||||
return this.attDay;
|
||||
}
|
||||
|
||||
public void setAttDay(Long attDay) {
|
||||
this.attDay = attDay;
|
||||
}
|
||||
|
||||
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 String getRuleName() {
|
||||
return this.ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
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 Integer getReason() {
|
||||
return this.reason;
|
||||
}
|
||||
|
||||
public void setReason(Integer reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
public Long getCorrectTime() {
|
||||
return this.correctTime;
|
||||
}
|
||||
|
||||
public void setCorrectTime(Long correctTime) {
|
||||
this.correctTime = correctTime;
|
||||
}
|
||||
|
||||
public Integer getInitStatus() {
|
||||
return this.initStatus;
|
||||
}
|
||||
|
||||
public void setInitStatus(Integer initStatus) {
|
||||
this.initStatus = initStatus;
|
||||
}
|
||||
|
||||
public Integer getEndStatus() {
|
||||
return this.endStatus;
|
||||
}
|
||||
|
||||
public void setEndStatus(Integer endStatus) {
|
||||
this.endStatus = endStatus;
|
||||
}
|
||||
|
||||
public String getWorkHours() {
|
||||
return this.workHours;
|
||||
}
|
||||
|
||||
public void setWorkHours(String workHours) {
|
||||
this.workHours = workHours;
|
||||
}
|
||||
|
||||
public Integer getStartWorkState() {
|
||||
return this.startWorkState;
|
||||
}
|
||||
|
||||
public void setStartWorkState(Integer startWorkState) {
|
||||
this.startWorkState = startWorkState;
|
||||
}
|
||||
|
||||
public Integer getEndWorkState() {
|
||||
return this.endWorkState;
|
||||
}
|
||||
|
||||
public void setEndWorkState(Integer endWorkState) {
|
||||
this.endWorkState = endWorkState;
|
||||
}
|
||||
|
||||
public Long getRuleStartWorkTime() {
|
||||
return this.ruleStartWorkTime;
|
||||
}
|
||||
|
||||
public void setRuleStartWorkTime(Long ruleStartWorkTime) {
|
||||
this.ruleStartWorkTime = ruleStartWorkTime;
|
||||
}
|
||||
|
||||
public Long getRuleEndWorkTime() {
|
||||
return this.ruleEndWorkTime;
|
||||
}
|
||||
|
||||
public void setRuleEndWorkTime(Long ruleEndWorkTime) {
|
||||
this.ruleEndWorkTime = ruleEndWorkTime;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public Integer getIsOverTime() {
|
||||
return this.isOverTime;
|
||||
}
|
||||
|
||||
public void setIsOverTime(Integer isOverTime) {
|
||||
this.isOverTime = isOverTime;
|
||||
}
|
||||
|
||||
public String getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(String overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
public Integer getSignCount() {
|
||||
return this.signCount;
|
||||
}
|
||||
|
||||
public void setSignCount(Integer signCount) {
|
||||
this.signCount = signCount;
|
||||
}
|
||||
|
||||
public String getReasonDesc() {
|
||||
return this.reasonDesc;
|
||||
}
|
||||
|
||||
public void setReasonDesc(String reasonDesc) {
|
||||
this.reasonDesc = reasonDesc;
|
||||
}
|
||||
|
||||
public String getStartDeviceName() {
|
||||
return this.startDeviceName;
|
||||
}
|
||||
|
||||
public void setStartDeviceName(String startDeviceName) {
|
||||
this.startDeviceName = startDeviceName;
|
||||
}
|
||||
|
||||
public String getStartDeviceAddress() {
|
||||
return this.startDeviceAddress;
|
||||
}
|
||||
|
||||
public void setStartDeviceAddress(String startDeviceAddress) {
|
||||
this.startDeviceAddress = startDeviceAddress;
|
||||
}
|
||||
|
||||
public String getEndDeviceName() {
|
||||
return this.endDeviceName;
|
||||
}
|
||||
|
||||
public void setEndDeviceName(String endDeviceName) {
|
||||
this.endDeviceName = endDeviceName;
|
||||
}
|
||||
|
||||
public String getEndDeviceAddress() {
|
||||
return this.endDeviceAddress;
|
||||
}
|
||||
|
||||
public void setEndDeviceAddress(String endDeviceAddress) {
|
||||
this.endDeviceAddress = endDeviceAddress;
|
||||
}
|
||||
|
||||
public List<String> getLabelNames() {
|
||||
return this.labelNames;
|
||||
}
|
||||
|
||||
public void setLabelNames(List<String> labelNames) {
|
||||
this.labelNames = labelNames;
|
||||
}
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendReportRecordExcelResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -7481861222044256052L;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u65e5\u671f", column="A")
|
||||
private String attrDay;
|
||||
@ExcelAttribute(name="\u672a\u7b7e\u5230\u4eba\u6570", column="B")
|
||||
private Integer unSignIn;
|
||||
@ExcelAttribute(name="\u8fdf\u5230\u4eba\u6570", column="C")
|
||||
private Integer late;
|
||||
@ExcelAttribute(name="\u65e9\u9000\u4eba\u6570", column="D")
|
||||
private Integer leaveEarly;
|
||||
@ExcelAttribute(name="\u52a0\u73ed\u4eba\u6570", column="E")
|
||||
private Integer overTime;
|
||||
|
||||
public String getAttrDay() {
|
||||
return this.attrDay;
|
||||
}
|
||||
|
||||
public void setAttrDay(String attrDay) {
|
||||
this.attrDay = attrDay;
|
||||
}
|
||||
|
||||
public Integer getUnSignIn() {
|
||||
return this.unSignIn;
|
||||
}
|
||||
|
||||
public void setUnSignIn(Integer unSignIn) {
|
||||
this.unSignIn = unSignIn;
|
||||
}
|
||||
|
||||
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 getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
}
|
||||
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendReportRecordResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1456827447277342307L;
|
||||
private Long attendDay;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer overTime;
|
||||
|
||||
public Long getAttendDay() {
|
||||
return this.attendDay;
|
||||
}
|
||||
|
||||
public void setAttendDay(Long attendDay) {
|
||||
this.attendDay = attendDay;
|
||||
}
|
||||
|
||||
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 getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
}
|
||||
|
||||
+246
@@ -0,0 +1,246 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import cn.cloudwalk.common.ninca.attendance.annotation.ExcelAttribute;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendReportStatisticalExcelResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -1236089208592128201L;
|
||||
@ExcelAttribute(name="\u65f6\u95f4", column="A")
|
||||
private String attendMonth;
|
||||
@ExcelAttribute(name="\u59d3\u540d", column="B")
|
||||
private String personName;
|
||||
@ExcelAttribute(name="\u624b\u673a\u53f7", column="C")
|
||||
private String telephone;
|
||||
@ExcelAttribute(name="\u7ec4\u7ec7", column="D")
|
||||
private String orgName;
|
||||
@ExcelAttribute(name="\u6807\u7b7e", column="E")
|
||||
private String labelNames;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u540d\u79f0", column="F")
|
||||
private String ruleName;
|
||||
@ExcelAttribute(name="\u8003\u52e4\u7c7b\u578b", column="G")
|
||||
private String ruleType;
|
||||
@ExcelAttribute(name="\u5e94\u6253\u5361\u5929\u6570", column="H")
|
||||
private Integer shouldSign;
|
||||
@ExcelAttribute(name="\u6b63\u5e38\u5929\u6570", column="I")
|
||||
private Integer normal;
|
||||
@ExcelAttribute(name="\u5f02\u5e38\u5929\u6570", column="J")
|
||||
private Integer abnormal;
|
||||
@ExcelAttribute(name="\u8fdf\u5230", column="K")
|
||||
private String lateTime;
|
||||
@ExcelAttribute(name="\u65e9\u9000", column="L")
|
||||
private String leaveEarlyTime;
|
||||
@ExcelAttribute(name="\u65f7\u5de5", column="M")
|
||||
private String absenteeism;
|
||||
@ExcelAttribute(name="\u5408\u8ba1", column="N")
|
||||
private String totalTime;
|
||||
@ExcelAttribute(name="\u521d\u59cb\u6b63\u5e38", column="O")
|
||||
private Integer startNormal;
|
||||
@ExcelAttribute(name="\u4fee\u6b63\u6b21\u6570", column="P")
|
||||
private Integer correct;
|
||||
@ExcelAttribute(name="\u8bf7\u5047", column="Q")
|
||||
private Integer vacation;
|
||||
@ExcelAttribute(name="\u51fa\u5dee", column="R")
|
||||
private Integer businessTrip;
|
||||
@ExcelAttribute(name="\u5916\u51fa", column="S")
|
||||
private Integer goOut;
|
||||
@ExcelAttribute(name="\u8c03\u4f11", column="T")
|
||||
private Integer paidLeave;
|
||||
@ExcelAttribute(name="\u5fd8\u8bb0\u6253\u5361", column="U")
|
||||
private Integer forget;
|
||||
@ExcelAttribute(name="\u6253\u5361\u673a\u5f02\u5e38", column="V")
|
||||
private Integer machineException;
|
||||
@ExcelAttribute(name="\u52a0\u73ed", column="W")
|
||||
private Integer overTime;
|
||||
|
||||
public String getAttendMonth() {
|
||||
return this.attendMonth;
|
||||
}
|
||||
|
||||
public void setAttendMonth(String attendMonth) {
|
||||
this.attendMonth = attendMonth;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
public String getLabelNames() {
|
||||
return this.labelNames;
|
||||
}
|
||||
|
||||
public void setLabelNames(String labelNames) {
|
||||
this.labelNames = labelNames;
|
||||
}
|
||||
|
||||
public String getRuleName() {
|
||||
return this.ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
public String getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(String ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
public Integer getShouldSign() {
|
||||
return this.shouldSign;
|
||||
}
|
||||
|
||||
public void setShouldSign(Integer shouldSign) {
|
||||
this.shouldSign = shouldSign;
|
||||
}
|
||||
|
||||
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 String getLateTime() {
|
||||
return this.lateTime;
|
||||
}
|
||||
|
||||
public void setLateTime(String lateTime) {
|
||||
this.lateTime = lateTime;
|
||||
}
|
||||
|
||||
public String getLeaveEarlyTime() {
|
||||
return this.leaveEarlyTime;
|
||||
}
|
||||
|
||||
public void setLeaveEarlyTime(String leaveEarlyTime) {
|
||||
this.leaveEarlyTime = leaveEarlyTime;
|
||||
}
|
||||
|
||||
public String getAbsenteeism() {
|
||||
return this.absenteeism;
|
||||
}
|
||||
|
||||
public void setAbsenteeism(String absenteeism) {
|
||||
this.absenteeism = absenteeism;
|
||||
}
|
||||
|
||||
public String getTotalTime() {
|
||||
return this.totalTime;
|
||||
}
|
||||
|
||||
public void setTotalTime(String totalTime) {
|
||||
this.totalTime = totalTime;
|
||||
}
|
||||
|
||||
public Integer getStartNormal() {
|
||||
return this.startNormal;
|
||||
}
|
||||
|
||||
public void setStartNormal(Integer startNormal) {
|
||||
this.startNormal = startNormal;
|
||||
}
|
||||
|
||||
public Integer getCorrect() {
|
||||
return this.correct;
|
||||
}
|
||||
|
||||
public void setCorrect(Integer correct) {
|
||||
this.correct = correct;
|
||||
}
|
||||
|
||||
public Integer getVacation() {
|
||||
return this.vacation;
|
||||
}
|
||||
|
||||
public void setVacation(Integer vacation) {
|
||||
this.vacation = vacation;
|
||||
}
|
||||
|
||||
public Integer getBusinessTrip() {
|
||||
return this.businessTrip;
|
||||
}
|
||||
|
||||
public void setBusinessTrip(Integer businessTrip) {
|
||||
this.businessTrip = businessTrip;
|
||||
}
|
||||
|
||||
public Integer getGoOut() {
|
||||
return this.goOut;
|
||||
}
|
||||
|
||||
public void setGoOut(Integer goOut) {
|
||||
this.goOut = goOut;
|
||||
}
|
||||
|
||||
public Integer getPaidLeave() {
|
||||
return this.paidLeave;
|
||||
}
|
||||
|
||||
public void setPaidLeave(Integer paidLeave) {
|
||||
this.paidLeave = paidLeave;
|
||||
}
|
||||
|
||||
public Integer getForget() {
|
||||
return this.forget;
|
||||
}
|
||||
|
||||
public void setForget(Integer forget) {
|
||||
this.forget = forget;
|
||||
}
|
||||
|
||||
public Integer getMachineException() {
|
||||
return this.machineException;
|
||||
}
|
||||
|
||||
public void setMachineException(Integer machineException) {
|
||||
this.machineException = machineException;
|
||||
}
|
||||
|
||||
public Integer getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
}
|
||||
|
||||
+238
@@ -0,0 +1,238 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendReportStatisticalResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -9105147841983359734L;
|
||||
private String attendMonth;
|
||||
private Long month;
|
||||
private String personId;
|
||||
private String personName;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
private String ruleId;
|
||||
private String ruleName;
|
||||
private Integer ruleType;
|
||||
private Integer shouldSign;
|
||||
private Integer correct;
|
||||
private Integer normal;
|
||||
private Integer abnormal;
|
||||
private Integer overTime;
|
||||
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 String telephone;
|
||||
private List<String> labelNames;
|
||||
|
||||
public String getAttendMonth() {
|
||||
return this.attendMonth;
|
||||
}
|
||||
|
||||
public void setAttendMonth(String attendMonth) {
|
||||
this.attendMonth = attendMonth;
|
||||
}
|
||||
|
||||
public Long getMonth() {
|
||||
return this.month;
|
||||
}
|
||||
|
||||
public void setMonth(Long month) {
|
||||
this.month = month;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getRuleName() {
|
||||
return this.ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
public Integer getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Integer ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
|
||||
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 getOverTime() {
|
||||
return this.overTime;
|
||||
}
|
||||
|
||||
public void setOverTime(Integer overTime) {
|
||||
this.overTime = overTime;
|
||||
}
|
||||
|
||||
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 String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public List<String> getLabelNames() {
|
||||
return this.labelNames;
|
||||
}
|
||||
|
||||
public void setLabelNames(List<String> labelNames) {
|
||||
this.labelNames = labelNames;
|
||||
}
|
||||
}
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendBusinessDayReportService {
|
||||
public CloudwalkResult<Boolean> exec(Long var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
public interface AttendDayReportTaskService {
|
||||
public void execute();
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.Date;
|
||||
|
||||
public interface AttendMonthReportService {
|
||||
public CloudwalkResult<Integer> exec(Date var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public void init(Date var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
public interface AttendMonthReportTaskService {
|
||||
public void execute();
|
||||
}
|
||||
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.report.AttendReportDetailResultDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.report.AttendReportStatisticalResultDTO
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendReportDetailResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendReportStatisticalResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.report.AttendReportDetailResultDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.report.AttendReportStatisticalResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendReportConvertService {
|
||||
public List<AttendReportDetailResult> convertDetailResult(List<AttendReportDetailResultDTO> var1, CloudwalkCallContext var2) throws DataAccessException, ServiceException;
|
||||
|
||||
public List<AttendReportStatisticalResult> convertStatistical(List<AttendReportStatisticalResultDTO> var1, CloudwalkCallContext var2) throws ServiceException, DataAccessException;
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.report.param.AttendDayReportQueryParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendDayReportQueryResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendReportQueryService {
|
||||
public CloudwalkResult<AttendDayReportQueryResult> queryDay(AttendDayReportQueryParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.client.cwoscomponent.intelligent.organization.result.OrganizationResult
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageAble
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.report.service;
|
||||
|
||||
import cn.cloudwalk.client.cwoscomponent.intelligent.organization.result.OrganizationResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.param.AttendReportCorrectionParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.param.AttendReportDetailParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.param.AttendReportRecordParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.param.AttendReportStatisticalParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendReportDetailResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendReportRecordResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.report.result.AttendReportStatisticalResult;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendReportService {
|
||||
public CloudwalkResult<CloudwalkPageAble<AttendReportDetailResult>> detail(AttendReportDetailParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<CloudwalkPageAble<AttendReportStatisticalResult>> statistical(AttendReportStatisticalParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<AttendReportRecordResult>> record(AttendReportRecordParam var1, CloudwalkPageInfo var2, CloudwalkCallContext var3) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<Boolean> correction(AttendReportCorrectionParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public CloudwalkResult<List<OrganizationResult>> orgList(List<String> var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.common;
|
||||
|
||||
public class AbstractAttendResultGenCallContext {
|
||||
}
|
||||
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultPersonInfoDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleResultDTO
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.common;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AbstractAttendResultGenCallContext;
|
||||
import cn.cloudwalk.client.ninca.attendance.result.param.AttendResultSignParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultPersonInfoDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendResultGenCallContext
|
||||
extends AbstractAttendResultGenCallContext {
|
||||
private AttendResultSignParam signParam;
|
||||
private AttendResultDTO resultDTO;
|
||||
private AttendResultRuleDTO ruleDTO;
|
||||
private CloudwalkCallContext context;
|
||||
private AttendResultPersonInfoDTO personInfoDTO;
|
||||
private boolean isHoliday = false;
|
||||
private Long ruleAttendTime;
|
||||
private List<AttendResultDTO> resultList;
|
||||
private List<AttendResultRuleResultDTO> ruleResultList;
|
||||
|
||||
public AttendResultSignParam getSignParam() {
|
||||
return this.signParam;
|
||||
}
|
||||
|
||||
public void setSignParam(AttendResultSignParam signParam) {
|
||||
this.signParam = signParam;
|
||||
}
|
||||
|
||||
public AttendResultDTO getResultDTO() {
|
||||
return this.resultDTO;
|
||||
}
|
||||
|
||||
public void setResultDTO(AttendResultDTO resultDTO) {
|
||||
this.resultDTO = resultDTO;
|
||||
}
|
||||
|
||||
public AttendResultRuleDTO getRuleDTO() {
|
||||
return this.ruleDTO;
|
||||
}
|
||||
|
||||
public void setRuleDTO(AttendResultRuleDTO ruleDTO) {
|
||||
this.ruleDTO = ruleDTO;
|
||||
}
|
||||
|
||||
public CloudwalkCallContext getContext() {
|
||||
return this.context;
|
||||
}
|
||||
|
||||
public void setContext(CloudwalkCallContext context) {
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
public AttendResultPersonInfoDTO getPersonInfoDTO() {
|
||||
return this.personInfoDTO;
|
||||
}
|
||||
|
||||
public void setPersonInfoDTO(AttendResultPersonInfoDTO personInfoDTO) {
|
||||
this.personInfoDTO = personInfoDTO;
|
||||
}
|
||||
|
||||
public boolean isHoliday() {
|
||||
return this.isHoliday;
|
||||
}
|
||||
|
||||
public void setHoliday(boolean holiday) {
|
||||
this.isHoliday = holiday;
|
||||
}
|
||||
|
||||
public Long getRuleAttendTime() {
|
||||
return this.ruleAttendTime;
|
||||
}
|
||||
|
||||
public void setRuleAttendTime(Long ruleAttendTime) {
|
||||
this.ruleAttendTime = ruleAttendTime;
|
||||
}
|
||||
|
||||
public List<AttendResultDTO> getResultList() {
|
||||
return this.resultList;
|
||||
}
|
||||
|
||||
public void setResultList(List<AttendResultDTO> resultList) {
|
||||
this.resultList = resultList;
|
||||
}
|
||||
|
||||
public List<AttendResultRuleResultDTO> getRuleResultList() {
|
||||
return this.ruleResultList;
|
||||
}
|
||||
|
||||
public void setRuleResultList(List<AttendResultRuleResultDTO> ruleResultList) {
|
||||
this.ruleResultList = ruleResultList;
|
||||
}
|
||||
}
|
||||
|
||||
+207
@@ -0,0 +1,207 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendResultSignParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6607348167460935566L;
|
||||
@NotEmpty(message="76240244")
|
||||
private String imageId;
|
||||
@NotEmpty(message="76240244")
|
||||
private String businessId;
|
||||
private String deviceId;
|
||||
@NotNull(message="76240244")
|
||||
private Long signTime;
|
||||
private String faceUrl;
|
||||
private String spotImgPath;
|
||||
private String panoramaPath;
|
||||
private BigDecimal score;
|
||||
private Integer status;
|
||||
private BigDecimal threshold;
|
||||
private String remark;
|
||||
private String devType;
|
||||
private String devTypeName;
|
||||
@NotEmpty(message="76240244")
|
||||
private String deviceCode;
|
||||
private String deviceAreaId;
|
||||
private String deviceAreaName;
|
||||
private String deviceName;
|
||||
private String districtId;
|
||||
private String districtName;
|
||||
private String districtMergeName;
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Long getSignTime() {
|
||||
return this.signTime;
|
||||
}
|
||||
|
||||
public void setSignTime(Long signTime) {
|
||||
this.signTime = signTime;
|
||||
}
|
||||
|
||||
public String getFaceUrl() {
|
||||
return this.faceUrl;
|
||||
}
|
||||
|
||||
public void setFaceUrl(String faceUrl) {
|
||||
this.faceUrl = faceUrl;
|
||||
}
|
||||
|
||||
public String getSpotImgPath() {
|
||||
return this.spotImgPath;
|
||||
}
|
||||
|
||||
public void setSpotImgPath(String spotImgPath) {
|
||||
this.spotImgPath = spotImgPath;
|
||||
}
|
||||
|
||||
public String getPanoramaPath() {
|
||||
return this.panoramaPath;
|
||||
}
|
||||
|
||||
public void setPanoramaPath(String panoramaPath) {
|
||||
this.panoramaPath = panoramaPath;
|
||||
}
|
||||
|
||||
public BigDecimal getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public void setScore(BigDecimal score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public BigDecimal getThreshold() {
|
||||
return this.threshold;
|
||||
}
|
||||
|
||||
public void setThreshold(BigDecimal threshold) {
|
||||
this.threshold = threshold;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getDevType() {
|
||||
return this.devType;
|
||||
}
|
||||
|
||||
public void setDevType(String devType) {
|
||||
this.devType = devType;
|
||||
}
|
||||
|
||||
public String getDevTypeName() {
|
||||
return this.devTypeName;
|
||||
}
|
||||
|
||||
public void setDevTypeName(String devTypeName) {
|
||||
this.devTypeName = devTypeName;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceAreaId() {
|
||||
return this.deviceAreaId;
|
||||
}
|
||||
|
||||
public void setDeviceAreaId(String deviceAreaId) {
|
||||
this.deviceAreaId = deviceAreaId;
|
||||
}
|
||||
|
||||
public String getDeviceAreaName() {
|
||||
return this.deviceAreaName;
|
||||
}
|
||||
|
||||
public void setDeviceAreaName(String deviceAreaName) {
|
||||
this.deviceAreaName = deviceAreaName;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDistrictId() {
|
||||
return this.districtId;
|
||||
}
|
||||
|
||||
public void setDistrictId(String districtId) {
|
||||
this.districtId = districtId;
|
||||
}
|
||||
|
||||
public String getDistrictName() {
|
||||
return this.districtName;
|
||||
}
|
||||
|
||||
public void setDistrictName(String districtName) {
|
||||
this.districtName = districtName;
|
||||
}
|
||||
|
||||
public String getDistrictMergeName() {
|
||||
return this.districtMergeName;
|
||||
}
|
||||
|
||||
public void setDistrictMergeName(String districtMergeName) {
|
||||
this.districtMergeName = districtMergeName;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AttendResultSignParam{imageId='" + this.imageId + '\'' + ", businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", signTime=" + this.signTime + ", faceUrl='" + this.faceUrl + '\'' + ", spotImgPath='" + this.spotImgPath + '\'' + ", panoramaPath='" + this.panoramaPath + '\'' + ", score=" + this.score + ", status=" + this.status + ", threshold=" + this.threshold + ", remark='" + this.remark + '\'' + ", devType='" + this.devType + '\'' + ", devTypeName='" + this.devTypeName + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceAreaId='" + this.deviceAreaId + '\'' + ", deviceAreaName='" + this.deviceAreaName + '\'' + ", deviceName='" + this.deviceName + '\'' + ", districtId='" + this.districtId + '\'' + ", districtName='" + this.districtName + '\'' + ", districtMergeName='" + this.districtMergeName + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AbstractAttendResultGenResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7254569295278361386L;
|
||||
}
|
||||
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.result.AbstractAttendResultGenResult;
|
||||
|
||||
public class AttendResultGenResult
|
||||
extends AbstractAttendResultGenResult {
|
||||
private static final long serialVersionUID = 4079382789266546592L;
|
||||
}
|
||||
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface AttendResultFlexibilityGenService {
|
||||
public void execute(AttendResultGenCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendResultGenLogicCorrectionService {
|
||||
public CloudwalkResult<Boolean> correction(List<AttendResultDTO> var1, AttendResultGenCallContext var2) throws ServiceException, DataAccessException;
|
||||
}
|
||||
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.param.AttendResultSignParam;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendResultGenService {
|
||||
public CloudwalkResult<Boolean> gen(AttendResultSignParam var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendResultInitService {
|
||||
public void init(Date var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public List<String> queryBusinessIdList(Integer var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
public interface AttendResultInitTaskService {
|
||||
public void resultInit();
|
||||
}
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendResultInitV2Service {
|
||||
public void init(Date var1, CloudwalkCallContext var2) throws ServiceException;
|
||||
|
||||
public List<String> queryBusinessIdList(Integer var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface AttendResultRoadMapService {
|
||||
public boolean getRoadMap(AttendResultGenCallContext var1) throws DataAccessException, ServiceException;
|
||||
}
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
|
||||
public interface AttendResultRuleService {
|
||||
public CloudwalkResult<Boolean> matchRule(AttendResultGenCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface AttendResultSchedulingGenService {
|
||||
public void execute(AttendResultGenCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.context.CloudwalkCallContext
|
||||
* cn.cloudwalk.cloud.exception.DataAccessException
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultMatchRuleQueryDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultPersonInfoDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleDTO
|
||||
* cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultSchedulingQueryResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.context.CloudwalkCallContext;
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultMatchRuleQueryDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultPersonInfoDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultRuleDTO;
|
||||
import cn.cloudwalk.common.ninca.attendance.bean.result.AttendResultSchedulingQueryResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendResultService {
|
||||
public CloudwalkResult<AttendResultDTO> init(AttendResultGenCallContext var1, AttendResultRuleDTO var2, AttendResultPersonInfoDTO var3, CloudwalkCallContext var4) throws ServiceException;
|
||||
|
||||
public int update(AttendResultDTO var1) throws ServiceException;
|
||||
|
||||
public List<AttendResultDTO> query(AttendResultGenCallContext var1, List<Integer> var2) throws DataAccessException;
|
||||
|
||||
public AttendResultRuleDTO queryMatchRule(AttendResultMatchRuleQueryDTO var1) throws DataAccessException, ServiceException;
|
||||
|
||||
public AttendResultRuleDTO queryMatchRuleById(AttendResultSchedulingQueryResult var1) throws ServiceException;
|
||||
|
||||
public String initRecord(AttendResultGenCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.result.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.result.common.AttendResultGenCallContext;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface AttendResultStandardGenService {
|
||||
public void execute(AttendResultGenCallContext var1) throws ServiceException;
|
||||
}
|
||||
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendOrgCheckParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4799826998180972824L;
|
||||
@NotEmpty(message="76240240")
|
||||
private List<String> orgIds;
|
||||
private String ruleId;
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
}
|
||||
|
||||
+191
@@ -0,0 +1,191 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.param.AttendRuleHolidayParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.param.AttendRuleSchedulingSaveParam;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendRuleAddParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -2435295346184839619L;
|
||||
@NotEmpty(message="76240209")
|
||||
@Size(min=1, max=64, message="76240210")
|
||||
private String name;
|
||||
@NotNull(message="76240211")
|
||||
private Integer type;
|
||||
@Size(max=255)
|
||||
private String remark;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private List<AttendRuleHolidayParam> holidays;
|
||||
@NotEmpty(message="76240230")
|
||||
private List<AttendRuleSchedulingSaveParam> schedulings;
|
||||
@NotEmpty(message="76240239")
|
||||
private List<String> deviceIds;
|
||||
private List<String> includeOrganizations;
|
||||
private List<String> includeLabels;
|
||||
private List<String> excludeLabels;
|
||||
private String businessId;
|
||||
private String userId;
|
||||
private Long nowTime;
|
||||
|
||||
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 String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
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 List<AttendRuleHolidayParam> getHolidays() {
|
||||
return this.holidays;
|
||||
}
|
||||
|
||||
public void setHolidays(List<AttendRuleHolidayParam> holidays) {
|
||||
this.holidays = holidays;
|
||||
}
|
||||
|
||||
public List<AttendRuleSchedulingSaveParam> getSchedulings() {
|
||||
return this.schedulings;
|
||||
}
|
||||
|
||||
public void setSchedulings(List<AttendRuleSchedulingSaveParam> schedulings) {
|
||||
this.schedulings = schedulings;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public List<String> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<String> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<String> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<String> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<String> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getNowTime() {
|
||||
return this.nowTime;
|
||||
}
|
||||
|
||||
public void setNowTime(Long nowTime) {
|
||||
this.nowTime = nowTime;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
public class AttendRuleDeleteParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -620121824750580326L;
|
||||
@NotNull(message="76240208")
|
||||
@Size(max=999)
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
+200
@@ -0,0 +1,200 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* javax.validation.constraints.NotNull
|
||||
* javax.validation.constraints.Size
|
||||
* org.hibernate.validator.constraints.NotEmpty
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.param.AttendRuleHolidayParam;
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.param.AttendRuleSchedulingSaveParam;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
import org.hibernate.validator.constraints.NotEmpty;
|
||||
|
||||
public class AttendRuleEditParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -4471765500034213204L;
|
||||
@NotNull(message="76240208")
|
||||
private String id;
|
||||
@NotEmpty(message="76240209")
|
||||
@Size(min=1, max=64, message="76240210")
|
||||
private String name;
|
||||
@NotNull(message="76240211")
|
||||
private Integer type;
|
||||
private String remark;
|
||||
private Integer allowDayoffOvertime;
|
||||
private Integer dayoffMinOvertime;
|
||||
private Integer allowWorkingOvertime;
|
||||
private Integer startOvertime;
|
||||
private Integer minOvertime;
|
||||
private Integer maxOvertime;
|
||||
private List<AttendRuleHolidayParam> holidays;
|
||||
@NotEmpty(message="76240230")
|
||||
private List<AttendRuleSchedulingSaveParam> schedulings;
|
||||
@NotEmpty(message="76240239")
|
||||
private List<String> deviceIds;
|
||||
private List<String> includeOrganizations;
|
||||
private List<String> includeLabels;
|
||||
private List<String> excludeLabels;
|
||||
private String businessId;
|
||||
private String userId;
|
||||
private Long nowTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
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 String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
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 List<AttendRuleHolidayParam> getHolidays() {
|
||||
return this.holidays;
|
||||
}
|
||||
|
||||
public void setHolidays(List<AttendRuleHolidayParam> holidays) {
|
||||
this.holidays = holidays;
|
||||
}
|
||||
|
||||
public List<AttendRuleSchedulingSaveParam> getSchedulings() {
|
||||
return this.schedulings;
|
||||
}
|
||||
|
||||
public void setSchedulings(List<AttendRuleSchedulingSaveParam> schedulings) {
|
||||
this.schedulings = schedulings;
|
||||
}
|
||||
|
||||
public List<String> getDeviceIds() {
|
||||
return this.deviceIds;
|
||||
}
|
||||
|
||||
public void setDeviceIds(List<String> deviceIds) {
|
||||
this.deviceIds = deviceIds;
|
||||
}
|
||||
|
||||
public List<String> getIncludeOrganizations() {
|
||||
return this.includeOrganizations;
|
||||
}
|
||||
|
||||
public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
this.includeOrganizations = includeOrganizations;
|
||||
}
|
||||
|
||||
public List<String> getIncludeLabels() {
|
||||
return this.includeLabels;
|
||||
}
|
||||
|
||||
public void setIncludeLabels(List<String> includeLabels) {
|
||||
this.includeLabels = includeLabels;
|
||||
}
|
||||
|
||||
public List<String> getExcludeLabels() {
|
||||
return this.excludeLabels;
|
||||
}
|
||||
|
||||
public void setExcludeLabels(List<String> excludeLabels) {
|
||||
this.excludeLabels = excludeLabels;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getNowTime() {
|
||||
return this.nowTime;
|
||||
}
|
||||
|
||||
public void setNowTime(Long nowTime) {
|
||||
this.nowTime = nowTime;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleHolidayParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 2450394591705345508L;
|
||||
private String holiday;
|
||||
private Integer type;
|
||||
|
||||
public String getHoliday() {
|
||||
return this.holiday;
|
||||
}
|
||||
|
||||
public void setHoliday(String holiday) {
|
||||
this.holiday = holiday;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRulePageQueryParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 6231399397834320621L;
|
||||
private String ruleName;
|
||||
private Integer ruleType;
|
||||
|
||||
public String getRuleName() {
|
||||
return this.ruleName;
|
||||
}
|
||||
|
||||
public void setRuleName(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
}
|
||||
|
||||
public Integer getRuleType() {
|
||||
return this.ruleType;
|
||||
}
|
||||
|
||||
public void setRuleType(Integer ruleType) {
|
||||
this.ruleType = ruleType;
|
||||
}
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.page.CloudwalkPageInfo
|
||||
* javax.validation.constraints.NotNull
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import java.io.Serializable;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
public class AttendRuleQueryParam
|
||||
extends CloudwalkPageInfo
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 7284583799766805699L;
|
||||
@NotNull(message="76240208")
|
||||
private String ruleId;
|
||||
private Integer type;
|
||||
|
||||
public String getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleSchedulingCheckParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5188930856999134544L;
|
||||
private String startworkTime;
|
||||
private String endworkTime;
|
||||
private Integer afterTime;
|
||||
private Integer beforeTime;
|
||||
private String startAdaptTime;
|
||||
private String endAdaptTime;
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+111
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.param;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleSchedulingSaveParam
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5188930856999134544L;
|
||||
private String schedulingDesc;
|
||||
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;
|
||||
|
||||
public String getSchedulingDesc() {
|
||||
return this.schedulingDesc;
|
||||
}
|
||||
|
||||
public void setSchedulingDesc(String schedulingDesc) {
|
||||
this.schedulingDesc = schedulingDesc;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleDeviceQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String deviceId;
|
||||
private String deviceName;
|
||||
private Byte 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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte 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(", ruleId=").append(this.ruleId);
|
||||
sb.append(", deviceId=").append(this.deviceId);
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleHolidayQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8186709155501032430L;
|
||||
private String holiday;
|
||||
private Integer type;
|
||||
|
||||
public String getHoliday() {
|
||||
return this.holiday;
|
||||
}
|
||||
|
||||
public void setHoliday(String holiday) {
|
||||
this.holiday = holiday;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleImagestoreQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String imageStoreId;
|
||||
private String imageStoreName;
|
||||
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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageStoreName() {
|
||||
return this.imageStoreName;
|
||||
}
|
||||
|
||||
public void setImageStoreName(String imageStoreName) {
|
||||
this.imageStoreName = imageStoreName;
|
||||
}
|
||||
|
||||
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(", ruleId=").append(this.ruleId);
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
+165
@@ -0,0 +1,165 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleInfoQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5954989398966276675L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
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 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 getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleLabelQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = -6574020004662421167L;
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String labelId;
|
||||
private String labelName;
|
||||
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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getLabelId() {
|
||||
return this.labelId;
|
||||
}
|
||||
|
||||
public void setLabelId(String labelId) {
|
||||
this.labelId = labelId;
|
||||
}
|
||||
|
||||
public String getLabelName() {
|
||||
return this.labelName;
|
||||
}
|
||||
|
||||
public void setLabelName(String labelName) {
|
||||
this.labelName = labelName;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleOrgQueryResult
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
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(", ruleId=").append(this.ruleId);
|
||||
sb.append(", orgId=").append(this.orgId);
|
||||
sb.append(", orgName=").append(this.orgName);
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
+124
@@ -0,0 +1,124 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.result.AttendRuleDeviceQueryResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.result.AttendRuleOrgQueryResult;
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.result.AttendRuleScheduleQueryResult;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AttendRulePageResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 5447303515531605158L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Integer type;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private List<AttendRuleScheduleQueryResult> schedulingList;
|
||||
private List<AttendRuleDeviceQueryResult> deviceList;
|
||||
private List<AttendRuleOrgQueryResult> orgList;
|
||||
|
||||
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 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 List<AttendRuleScheduleQueryResult> getSchedulingList() {
|
||||
return this.schedulingList;
|
||||
}
|
||||
|
||||
public void setSchedulingList(List<AttendRuleScheduleQueryResult> schedulingList) {
|
||||
this.schedulingList = schedulingList;
|
||||
}
|
||||
|
||||
public List<AttendRuleDeviceQueryResult> getDeviceList() {
|
||||
return this.deviceList;
|
||||
}
|
||||
|
||||
public void setDeviceList(List<AttendRuleDeviceQueryResult> deviceList) {
|
||||
this.deviceList = deviceList;
|
||||
}
|
||||
|
||||
public List<AttendRuleOrgQueryResult> getOrgList() {
|
||||
return this.orgList;
|
||||
}
|
||||
|
||||
public void setOrgList(List<AttendRuleOrgQueryResult> orgList) {
|
||||
this.orgList = orgList;
|
||||
}
|
||||
}
|
||||
|
||||
+165
@@ -0,0 +1,165 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.result;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AttendRuleScheduleQueryResult
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 8602043821615109779L;
|
||||
private String id;
|
||||
private String ruleId;
|
||||
private String schedulingDesc;
|
||||
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 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 getRuleId() {
|
||||
return this.ruleId;
|
||||
}
|
||||
|
||||
public void setRuleId(String ruleId) {
|
||||
this.ruleId = ruleId;
|
||||
}
|
||||
|
||||
public String getSchedulingDesc() {
|
||||
return this.schedulingDesc;
|
||||
}
|
||||
|
||||
public void setSchedulingDesc(String schedulingDesc) {
|
||||
this.schedulingDesc = schedulingDesc;
|
||||
}
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.exception.ServiceException
|
||||
* cn.cloudwalk.cloud.result.CloudwalkResult
|
||||
*/
|
||||
package cn.cloudwalk.client.ninca.attendance.rule.service;
|
||||
|
||||
import cn.cloudwalk.client.ninca.attendance.rule.param.AttendRuleSchedulingSaveParam;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.result.CloudwalkResult;
|
||||
import java.util.List;
|
||||
|
||||
public interface AttendRuleCheckService {
|
||||
public CloudwalkResult<Boolean> check(Integer var1, List<AttendRuleSchedulingSaveParam> var2) throws ServiceException;
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user