Nessuna descrizione

AuthApply.java 1.5KB

    package com.ekexiu.portal.po; import org.jfw.apt.orm.annotation.entry.Column; import org.jfw.apt.orm.annotation.entry.PrimaryKey; import org.jfw.apt.orm.annotation.entry.Table; import org.jfw.apt.orm.core.defaultImpl.WIntHandler; import org.jfw.apt.orm.core.enums.DE; import com.ekexiu.portal.basepo.CreateTimeSupported; @Table @PrimaryKey("authApplyId") public class AuthApply implements CreateTimeSupported { private String authApplyId; private String professorId; private String applyType; private Integer solveStatus; private String createTime; @Column(DE.id_32) public String getAuthApplyId() { return authApplyId; } public void setAuthApplyId(String authApplyId) { this.authApplyId = authApplyId; } @Column(DE.id_32) public String getProfessorId() { return professorId; } public void setProfessorId(String professorId) { this.professorId = professorId; } @Column(DE.string_de) public String getApplyType() { return applyType; } public void setApplyType(String applyType) { this.applyType = applyType; } @Column(handlerClass=WIntHandler.class,dbType="INT",insertable=false,nullable=false,renewable=false,queryable=true) public Integer getSolveStatus() { return solveStatus; } public void setSolveStatus(Integer solveStatus) { this.solveStatus = solveStatus; } public String getCreateTime() { return createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } }