93 lines
2.0 KiB
Java
93 lines
2.0 KiB
Java
|
|
package com.nis.domain;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
import javax.xml.bind.annotation.XmlTransient;
|
||
|
|
|
||
|
|
import org.apache.poi.ss.formula.functions.T;
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||
|
|
|
||
|
|
public class SysUserWarn {
|
||
|
|
|
||
|
|
private String serviceId; //业务Id
|
||
|
|
private String serviceDesc;//业务描述
|
||
|
|
private Integer interfaceCfgTotal;//界面配置数量
|
||
|
|
|
||
|
|
private Integer systemCfgTotal;//服务端配置数量
|
||
|
|
|
||
|
|
private Date time;//时间
|
||
|
|
private String remark;//备注
|
||
|
|
|
||
|
|
private Integer id;//serviceID
|
||
|
|
private String tableName;//表名
|
||
|
|
/**
|
||
|
|
* 当前实体分页对象
|
||
|
|
*/
|
||
|
|
protected Page<SysUserWarn> page;
|
||
|
|
|
||
|
|
public String getServiceId() {
|
||
|
|
return serviceId;
|
||
|
|
}
|
||
|
|
public void setServiceId(String serviceId) {
|
||
|
|
this.serviceId = serviceId;
|
||
|
|
}
|
||
|
|
public String getServiceDesc() {
|
||
|
|
return serviceDesc;
|
||
|
|
}
|
||
|
|
public void setServiceDesc(String serviceDesc) {
|
||
|
|
this.serviceDesc = serviceDesc;
|
||
|
|
}
|
||
|
|
public Integer getInterfaceCfgTotal() {
|
||
|
|
return interfaceCfgTotal;
|
||
|
|
}
|
||
|
|
public void setInterfaceCfgTotal(Integer interfaceCfgTotal) {
|
||
|
|
this.interfaceCfgTotal = interfaceCfgTotal;
|
||
|
|
}
|
||
|
|
public Integer getSystemCfgTotal() {
|
||
|
|
return systemCfgTotal;
|
||
|
|
}
|
||
|
|
public void setSystemCfgTotal(Integer systemCfgTotal) {
|
||
|
|
this.systemCfgTotal = systemCfgTotal;
|
||
|
|
}
|
||
|
|
public Date getTime() {
|
||
|
|
return time;
|
||
|
|
}
|
||
|
|
public void setTime(Date time) {
|
||
|
|
this.time = time;
|
||
|
|
}
|
||
|
|
public String getRemark() {
|
||
|
|
return remark;
|
||
|
|
}
|
||
|
|
public void setRemark(String remark) {
|
||
|
|
this.remark = remark;
|
||
|
|
}
|
||
|
|
public Integer getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
public void setId(Integer id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
public String getTableName() {
|
||
|
|
return tableName;
|
||
|
|
}
|
||
|
|
public void setTableName(String tableName) {
|
||
|
|
this.tableName = tableName;
|
||
|
|
}
|
||
|
|
@JsonIgnore
|
||
|
|
@XmlTransient
|
||
|
|
public Page<SysUserWarn> getPage() {
|
||
|
|
if (page == null){
|
||
|
|
page = new Page<SysUserWarn>();
|
||
|
|
}
|
||
|
|
return page;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Page<SysUserWarn> setPage(Page<SysUserWarn> page) {
|
||
|
|
this.page = page;
|
||
|
|
return page;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|