init new
This commit is contained in:
@@ -0,0 +1,233 @@
|
||||
package com.point.strategy.applySearch.bean;
|
||||
|
||||
public class ApplySearch {
|
||||
private Integer id;
|
||||
|
||||
private String userName;
|
||||
|
||||
private String userChnName;
|
||||
|
||||
private Integer classId;
|
||||
|
||||
private String className;
|
||||
|
||||
private Integer entityId;
|
||||
|
||||
private String entityName;
|
||||
|
||||
private String archiveNo;
|
||||
|
||||
private String maintitle;
|
||||
|
||||
private String recId;
|
||||
|
||||
private String authorizeDate;
|
||||
|
||||
private Integer expiryDate;
|
||||
|
||||
private Integer applyId;
|
||||
|
||||
private String printFiles;
|
||||
|
||||
private String purpose;
|
||||
|
||||
private String department;
|
||||
|
||||
private String createdBy;
|
||||
|
||||
private Integer tableType;
|
||||
|
||||
private Integer borrowType;
|
||||
|
||||
private String docNo;
|
||||
|
||||
private String securityClass;
|
||||
|
||||
private String borrowPurpose;
|
||||
|
||||
private String returnDate;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName == null ? null : userName.trim();
|
||||
}
|
||||
|
||||
public String getUserChnName() {
|
||||
return userChnName;
|
||||
}
|
||||
|
||||
public void setUserChnName(String userChnName) {
|
||||
this.userChnName = userChnName == null ? null : userChnName.trim();
|
||||
}
|
||||
|
||||
public Integer getClassId() {
|
||||
return classId;
|
||||
}
|
||||
|
||||
public void setClassId(Integer classId) {
|
||||
this.classId = classId;
|
||||
}
|
||||
|
||||
public String getClassName() {
|
||||
return className;
|
||||
}
|
||||
|
||||
public void setClassName(String className) {
|
||||
this.className = className == null ? null : className.trim();
|
||||
}
|
||||
|
||||
public Integer getEntityId() {
|
||||
return entityId;
|
||||
}
|
||||
|
||||
public void setEntityId(Integer entityId) {
|
||||
this.entityId = entityId;
|
||||
}
|
||||
|
||||
public String getEntityName() {
|
||||
return entityName;
|
||||
}
|
||||
|
||||
public void setEntityName(String entityName) {
|
||||
this.entityName = entityName == null ? null : entityName.trim();
|
||||
}
|
||||
|
||||
public String getArchiveNo() {
|
||||
return archiveNo;
|
||||
}
|
||||
|
||||
public void setArchiveNo(String archiveNo) {
|
||||
this.archiveNo = archiveNo == null ? null : archiveNo.trim();
|
||||
}
|
||||
|
||||
public String getMaintitle() {
|
||||
return maintitle;
|
||||
}
|
||||
|
||||
public void setMaintitle(String maintitle) {
|
||||
this.maintitle = maintitle == null ? null : maintitle.trim();
|
||||
}
|
||||
|
||||
public String getRecId() {
|
||||
return recId;
|
||||
}
|
||||
|
||||
public void setRecId(String recId) {
|
||||
this.recId = recId == null ? null : recId.trim();
|
||||
}
|
||||
|
||||
public String getAuthorizeDate() {
|
||||
return authorizeDate;
|
||||
}
|
||||
|
||||
public void setAuthorizeDate(String authorizeDate) {
|
||||
this.authorizeDate = authorizeDate == null ? null : authorizeDate.trim();
|
||||
}
|
||||
|
||||
public Integer getExpiryDate() {
|
||||
return expiryDate;
|
||||
}
|
||||
|
||||
public void setExpiryDate(Integer expiryDate) {
|
||||
this.expiryDate = expiryDate;
|
||||
}
|
||||
|
||||
public Integer getApplyId() {
|
||||
return applyId;
|
||||
}
|
||||
|
||||
public void setApplyId(Integer applyId) {
|
||||
this.applyId = applyId;
|
||||
}
|
||||
|
||||
public String getPrintFiles() {
|
||||
return printFiles;
|
||||
}
|
||||
|
||||
public void setPrintFiles(String printFiles) {
|
||||
this.printFiles = printFiles == null ? null : printFiles.trim();
|
||||
}
|
||||
|
||||
public String getPurpose() {
|
||||
return purpose;
|
||||
}
|
||||
|
||||
public void setPurpose(String purpose) {
|
||||
this.purpose = purpose == null ? null : purpose.trim();
|
||||
}
|
||||
|
||||
public String getDepartment() {
|
||||
return department;
|
||||
}
|
||||
|
||||
public void setDepartment(String department) {
|
||||
this.department = department == null ? null : department.trim();
|
||||
}
|
||||
|
||||
public String getCreatedBy() {
|
||||
return createdBy;
|
||||
}
|
||||
|
||||
public void setCreatedBy(String createdBy) {
|
||||
this.createdBy = createdBy == null ? null : createdBy.trim();
|
||||
}
|
||||
|
||||
public Integer getTableType() {
|
||||
return tableType;
|
||||
}
|
||||
|
||||
public void setTableType(Integer tableType) {
|
||||
this.tableType = tableType;
|
||||
}
|
||||
|
||||
public Integer getBorrowType() {
|
||||
return borrowType;
|
||||
}
|
||||
|
||||
public void setBorrowType(Integer borrowType) {
|
||||
this.borrowType = borrowType;
|
||||
}
|
||||
|
||||
public String getDocNo() {
|
||||
return docNo;
|
||||
}
|
||||
|
||||
public void setDocNo(String docNo) {
|
||||
this.docNo = docNo == null ? null : docNo.trim();
|
||||
}
|
||||
|
||||
public String getSecurityClass() {
|
||||
return securityClass;
|
||||
}
|
||||
|
||||
public void setSecurityClass(String securityClass) {
|
||||
this.securityClass = securityClass == null ? null : securityClass.trim();
|
||||
}
|
||||
|
||||
public String getBorrowPurpose() {
|
||||
return borrowPurpose;
|
||||
}
|
||||
|
||||
public void setBorrowPurpose(String borrowPurpose) {
|
||||
this.borrowPurpose = borrowPurpose == null ? null : borrowPurpose.trim();
|
||||
}
|
||||
|
||||
public String getReturnDate() {
|
||||
return returnDate;
|
||||
}
|
||||
|
||||
public void setReturnDate(String returnDate) {
|
||||
this.returnDate = returnDate == null ? null : returnDate.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.point.strategy.applySearch.mapper;
|
||||
|
||||
|
||||
import com.point.strategy.applySearch.bean.ApplySearch;
|
||||
|
||||
public interface ApplySearchMapper {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(ApplySearch record);
|
||||
|
||||
int insertSelective(ApplySearch record);
|
||||
|
||||
ApplySearch selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(ApplySearch record);
|
||||
|
||||
int updateByPrimaryKey(ApplySearch record);
|
||||
}
|
||||
Reference in New Issue
Block a user