8 changed files with 6964 additions and 69 deletions
-
6193logs/xujie-erp/xujie2021.log
-
108xujie-pms/src/main/java/com/xujie/pms/controller/EamController.java
-
143xujie-pms/src/main/java/com/xujie/pms/data/EamPropertiesModelDetailData.java
-
152xujie-pms/src/main/java/com/xujie/pms/data/EamPropertiesModelHeaderData.java
-
105xujie-pms/src/main/java/com/xujie/pms/mapper/EamMapper.java
-
223xujie-pms/src/main/java/com/xujie/pms/service/EamService.java
-
51xujie-pms/src/main/java/com/xujie/pms/service/Impl/EamServiceImpl.java
-
58xujie-pms/src/main/resources/mapper/EamMapper.xml
6193
logs/xujie-erp/xujie2021.log
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,143 @@ |
|||||
|
package com.xujie.pms.data; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
public class EamPropertiesModelDetailData { |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String functionType; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String codeNo; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String propertiesItemNo; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private Integer seqNo; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date createdDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date updateDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String updateBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String delflag; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private Integer version; |
||||
|
|
||||
|
public String getFunctionType() { |
||||
|
return functionType; |
||||
|
} |
||||
|
|
||||
|
public void setFunctionType(String functionType) { |
||||
|
this.functionType = functionType; |
||||
|
} |
||||
|
|
||||
|
public String getCodeNo() { |
||||
|
return codeNo; |
||||
|
} |
||||
|
|
||||
|
public void setCodeNo(String codeNo) { |
||||
|
this.codeNo = codeNo; |
||||
|
} |
||||
|
|
||||
|
public String getPropertiesItemNo() { |
||||
|
return propertiesItemNo; |
||||
|
} |
||||
|
|
||||
|
public void setPropertiesItemNo(String propertiesItemNo) { |
||||
|
this.propertiesItemNo = propertiesItemNo; |
||||
|
} |
||||
|
|
||||
|
public Integer getSeqNo() { |
||||
|
return seqNo; |
||||
|
} |
||||
|
|
||||
|
public void setSeqNo(Integer seqNo) { |
||||
|
this.seqNo = seqNo; |
||||
|
} |
||||
|
|
||||
|
public Date getCreatedDate() { |
||||
|
return createdDate; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedDate(Date createdDate) { |
||||
|
this.createdDate = createdDate; |
||||
|
} |
||||
|
|
||||
|
public String getCreatedBy() { |
||||
|
return createdBy; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedBy(String createdBy) { |
||||
|
this.createdBy = createdBy; |
||||
|
} |
||||
|
|
||||
|
public Date getUpdateDate() { |
||||
|
return updateDate; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateDate(Date updateDate) { |
||||
|
this.updateDate = updateDate; |
||||
|
} |
||||
|
|
||||
|
public String getUpdateBy() { |
||||
|
return updateBy; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateBy(String updateBy) { |
||||
|
this.updateBy = updateBy; |
||||
|
} |
||||
|
|
||||
|
public String getDelflag() { |
||||
|
return delflag; |
||||
|
} |
||||
|
|
||||
|
public void setDelflag(String delflag) { |
||||
|
this.delflag = delflag; |
||||
|
} |
||||
|
|
||||
|
public Integer getVersion() { |
||||
|
return version; |
||||
|
} |
||||
|
|
||||
|
public void setVersion(Integer version) { |
||||
|
this.version = version; |
||||
|
} |
||||
|
} |
||||
|
|
||||
@ -0,0 +1,152 @@ |
|||||
|
package com.xujie.pms.data; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import com.xujie.common.utils.QueryPage; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
public class EamPropertiesModelHeaderData extends QueryPage { |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String functionType; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String codeNo; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String codeDesc; |
||||
|
private String userId; |
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String active; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date createdDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8") |
||||
|
private Date updateDate; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String updateBy; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private String delflag; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
*/ |
||||
|
private Integer version; |
||||
|
|
||||
|
public String getFunctionType() { |
||||
|
return functionType; |
||||
|
} |
||||
|
|
||||
|
public void setFunctionType(String functionType) { |
||||
|
this.functionType = functionType; |
||||
|
} |
||||
|
|
||||
|
public String getCodeNo() { |
||||
|
return codeNo; |
||||
|
} |
||||
|
|
||||
|
public void setCodeNo(String codeNo) { |
||||
|
this.codeNo = codeNo; |
||||
|
} |
||||
|
|
||||
|
public String getCodeDesc() { |
||||
|
return codeDesc; |
||||
|
} |
||||
|
|
||||
|
public void setCodeDesc(String codeDesc) { |
||||
|
this.codeDesc = codeDesc; |
||||
|
} |
||||
|
|
||||
|
public String getActive() { |
||||
|
return active; |
||||
|
} |
||||
|
|
||||
|
public void setActive(String active) { |
||||
|
this.active = active; |
||||
|
} |
||||
|
|
||||
|
public Date getCreatedDate() { |
||||
|
return createdDate; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedDate(Date createdDate) { |
||||
|
this.createdDate = createdDate; |
||||
|
} |
||||
|
|
||||
|
public String getCreatedBy() { |
||||
|
return createdBy; |
||||
|
} |
||||
|
|
||||
|
public void setCreatedBy(String createdBy) { |
||||
|
this.createdBy = createdBy; |
||||
|
} |
||||
|
|
||||
|
public Date getUpdateDate() { |
||||
|
return updateDate; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateDate(Date updateDate) { |
||||
|
this.updateDate = updateDate; |
||||
|
} |
||||
|
|
||||
|
public String getUpdateBy() { |
||||
|
return updateBy; |
||||
|
} |
||||
|
|
||||
|
public void setUpdateBy(String updateBy) { |
||||
|
this.updateBy = updateBy; |
||||
|
} |
||||
|
|
||||
|
public String getDelflag() { |
||||
|
return delflag; |
||||
|
} |
||||
|
|
||||
|
public void setDelflag(String delflag) { |
||||
|
this.delflag = delflag; |
||||
|
} |
||||
|
|
||||
|
public Integer getVersion() { |
||||
|
return version; |
||||
|
} |
||||
|
|
||||
|
public void setVersion(Integer version) { |
||||
|
this.version = version; |
||||
|
} |
||||
|
|
||||
|
public String getUserId() { |
||||
|
return userId; |
||||
|
} |
||||
|
|
||||
|
public void setUserId(String userId) { |
||||
|
this.userId = userId; |
||||
|
} |
||||
|
} |
||||
|
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue