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.enums.DE;
@Table
@PrimaryKey("authImageId")
public class AuthImage {
private String authImageId;
private String authApplyId;
private String authSrc;
@Column(DE.id_32)
public String getAuthImageId() {
return authImageId;
}
public void setAuthImageId(String authImageId) {
this.authImageId = authImageId;
}
@Column(DE.id_32)
public String getAuthApplyId() {
return authApplyId;
}
public void setAuthApplyId(String authApplyId) {
this.authApplyId = authApplyId;
}
@Column(DE.string_de)
public String getAuthSrc() {
return authSrc;
}
public void setAuthSrc(String authSrc) {
this.authSrc = authSrc;
}
}
|