136 lines
2.6 KiB
Java
136 lines
2.6 KiB
Java
|
|
package com.nis.domain.basics;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
import com.nis.domain.configuration.BaseCfg;
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @ClassName: AsnGroupInfo.java
|
||
|
|
* @Description: ASN分组
|
||
|
|
* @version V1.0
|
||
|
|
*/
|
||
|
|
public class AsnGroupInfo extends BaseCfg<AsnGroupInfo> implements Serializable{
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = 7931466570918016654L;
|
||
|
|
private Integer groupId;
|
||
|
|
private Integer orgGroupId;
|
||
|
|
@ExcelField(title="cfg_id",sort=301)
|
||
|
|
private Integer compileId;
|
||
|
|
@ExcelField(title="organization",sort=302)
|
||
|
|
private String organization;
|
||
|
|
@ExcelField(title="organization",sort=303)
|
||
|
|
private String country;
|
||
|
|
@ExcelField(title="organization",sort=304)
|
||
|
|
private String detail;
|
||
|
|
private Integer isValid;
|
||
|
|
@ExcelField(title="ASN",sort=305)
|
||
|
|
private Long asnId;
|
||
|
|
|
||
|
|
public Integer getOrgGroupId() {
|
||
|
|
return orgGroupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setOrgGroupId(Integer orgGroupId) {
|
||
|
|
this.orgGroupId = orgGroupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getCompileId() {
|
||
|
|
return compileId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCompileId(Integer compileId) {
|
||
|
|
this.compileId = compileId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getGroupId() {
|
||
|
|
return groupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGroupId(Integer groupId) {
|
||
|
|
this.groupId = groupId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getOrganization() {
|
||
|
|
return organization;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setOrganization(String organization) {
|
||
|
|
this.organization = organization;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCountry() {
|
||
|
|
return country;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCountry(String country) {
|
||
|
|
this.country = country;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDetail() {
|
||
|
|
return detail;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDetail(String detail) {
|
||
|
|
this.detail = detail;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getIsValid() {
|
||
|
|
return isValid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsValid(Integer isValid) {
|
||
|
|
this.isValid = isValid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getCreateTime() {
|
||
|
|
return createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreateTime(Date createTime) {
|
||
|
|
this.createTime = createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getCreatorId() {
|
||
|
|
return creatorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreatorId(Long creatorId) {
|
||
|
|
this.creatorId = creatorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getEditTime() {
|
||
|
|
return editTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEditTime(Date editTime) {
|
||
|
|
this.editTime = editTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getEditorId() {
|
||
|
|
return editorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEditorId(Long editorId) {
|
||
|
|
this.editorId = editorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getAsnId() {
|
||
|
|
return asnId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAsnId(Long asnId) {
|
||
|
|
this.asnId = asnId;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
return super.toString();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|