初始化项目2

This commit is contained in:
季圣华
2016-10-30 10:43:24 +08:00
parent 238bdf9c10
commit f01f4f210f
206 changed files with 19870 additions and 0 deletions

View File

@@ -0,0 +1,294 @@
package com.jsh.model.vo.basic;
import java.io.File;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AppModel implements Serializable
{
private AppShowModel showModel = new AppShowModel();
/**======开始接受页面参数=================**/
/**
* 代号
*/
private String Number = "";
/**
* 名称
*/
private String Name = "";
/**
* 类型
*/
private String Type = "";
/**
* 图标
*/
private String Icon = "";
/**
* 链接
*/
private String URL = "";
/**
* 宽度
*/
private String Width = "";
/**
* 高度
*/
private String Height = "";
/**
* 拉伸
*/
private Boolean ReSize = false;
/**
* 最大化
*/
private Boolean OpenMax = false;
/**
* Flash
*/
private Boolean Flash = false;
/**
* 种类
*/
private String ZL = "";
/**
* 排序号
*/
private String Sort = "";
/**
* 备注
*/
private String Remark = "";
/**
* 启用
*/
private Boolean Enabled = false;
/**
* 分类ID
*/
private Long appID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String appIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* UBTypeUserBusiness类型
*/
private String UBType = "";
/**
* UBKeyIdUserBusiness关键id
*/
private String UBKeyId = "";
public AppShowModel getShowModel() {
return showModel;
}
public void setShowModel(AppShowModel showModel) {
this.showModel = showModel;
}
public String getNumber() {
return Number;
}
public void setNumber(String number) {
Number = number;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getIcon() {
return Icon;
}
public void setIcon(String icon) {
Icon = icon;
}
public String getURL() {
return URL;
}
public void setURL(String uRL) {
URL = uRL;
}
public String getWidth() {
return Width;
}
public void setWidth(String width) {
Width = width;
}
public String getHeight() {
return Height;
}
public void setHeight(String height) {
Height = height;
}
public Boolean getReSize() {
return ReSize;
}
public void setReSize(Boolean reSize) {
ReSize = reSize;
}
public Boolean getOpenMax() {
return OpenMax;
}
public void setOpenMax(Boolean openMax) {
OpenMax = openMax;
}
public Boolean getFlash() {
return Flash;
}
public void setFlash(Boolean flash) {
Flash = flash;
}
public String getZL() {
return ZL;
}
public void setZL(String zL) {
ZL = zL;
}
public String getSort() {
return Sort;
}
public void setSort(String sort) {
Sort = sort;
}
public String getRemark() {
return Remark;
}
public void setRemark(String remark) {
Remark = remark;
}
public Boolean getEnabled() {
return Enabled;
}
public void setEnabled(Boolean enabled) {
Enabled = enabled;
}
public Long getAppID() {
return appID;
}
public void setAppID(Long appID) {
this.appID = appID;
}
public String getAppIDs() {
return appIDs;
}
public void setAppIDs(String appIDs) {
this.appIDs = appIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getUBType() {
return UBType;
}
public void setUBType(String uBType) {
UBType = uBType;
}
public String getUBKeyId() {
return UBKeyId;
}
public void setUBKeyId(String uBKeyId) {
UBKeyId = uBKeyId;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AppShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,154 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AssetNameModel implements Serializable
{
private AssetNameShowModel showModel = new AssetNameShowModel();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private String assetName = "";
/**
* 是否易耗品
*/
private Short consumable;
/**
* 描述信息
*/
private String description = "";
/**
* 分类ID
*/
private Long categoryID;
/**
* ID
*/
private Long assetNameID = 0l;
/**
* IDs 批量操作使用
*/
private String assetNameIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public AssetNameShowModel getShowModel()
{
return showModel;
}
public void setShowModel(AssetNameShowModel showModel)
{
this.showModel = showModel;
}
public String getAssetName()
{
return assetName;
}
public void setAssetName(String assetName)
{
this.assetName = assetName;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Long getAssetNameID()
{
return assetNameID;
}
public void setAssetNameID(Long assetNameID)
{
this.assetNameID = assetNameID;
}
public String getAssetNameIDs()
{
return assetNameIDs;
}
public void setAssetNameIDs(String assetNameIDs)
{
this.assetNameIDs = assetNameIDs;
}
public int getPageSize()
{
return pageSize;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageNo()
{
return pageNo;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public String getClientIp()
{
return clientIp;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public Short getConsumable()
{
return consumable;
}
public void setConsumable(Short consumable)
{
this.consumable = consumable;
}
public Long getCategoryID()
{
return categoryID;
}
public void setCategoryID(Long categoryID)
{
this.categoryID = categoryID;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AssetNameShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,125 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class CategoryModel implements Serializable
{
private CategoryShowModel showModel = new CategoryShowModel();
/**======开始接受页面参数=================**/
/**
* 分类名称
*/
private String categoryName = "";
/**
* 描述信息
*/
private String description = "";
/**
* 分类ID
*/
private Long categoryID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String categoryIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public CategoryShowModel getShowModel()
{
return showModel;
}
public void setShowModel(CategoryShowModel showModel)
{
this.showModel = showModel;
}
public String getCategoryName()
{
return categoryName;
}
public void setCategoryName(String categoryName)
{
this.categoryName = categoryName;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Long getCategoryID()
{
return categoryID;
}
public void setCategoryID(Long categoryID)
{
this.categoryID = categoryID;
}
public String getCategoryIDs()
{
return categoryIDs;
}
public void setCategoryIDs(String categoryIDs)
{
this.categoryIDs = categoryIDs;
}
public int getPageSize()
{
return pageSize;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageNo()
{
return pageNo;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public String getClientIp()
{
return clientIp;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class CategoryShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,150 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class DepotModel implements Serializable
{
private DepotShowModel showModel = new DepotShowModel();
/**======开始接受页面参数=================**/
/**
* 仓库名称
*/
private String name = "";
/**
* 排序
*/
private String sort = "";
/**
* 描述
*/
private String remark = "";
/**
* 分类ID
*/
private Long depotID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String depotIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* UBTypeUserBusiness类型
*/
private String UBType = "";
/**
* UBKeyIdUserBusiness关键id
*/
private String UBKeyId = "";
public DepotShowModel getShowModel() {
return showModel;
}
public void setShowModel(DepotShowModel showModel) {
this.showModel = showModel;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSort() {
return sort;
}
public void setSort(String sort) {
this.sort = sort;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getDepotID() {
return depotID;
}
public void setDepotID(Long depotID) {
this.depotID = depotID;
}
public String getDepotIDs() {
return depotIDs;
}
public void setDepotIDs(String depotIDs) {
this.depotIDs = depotIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getUBType() {
return UBType;
}
public void setUBType(String uBType) {
UBType = uBType;
}
public String getUBKeyId() {
return UBKeyId;
}
public void setUBKeyId(String uBKeyId) {
UBKeyId = uBKeyId;
}
}

View File

@@ -0,0 +1,43 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class DepotShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
/**
* 系统数据
*/
@SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>();
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
@SuppressWarnings("rawtypes")
public Map<String, List> getMap() {
return map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
}

View File

@@ -0,0 +1,219 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class FunctionsModel implements Serializable
{
private FunctionsShowModel showModel = new FunctionsShowModel();
/**======开始接受页面参数=================**/
/**
* 编号
*/
private String Number = "";
/**
* 名称
*/
private String Name = "";
/**
* 上级编号
*/
private String PNumber = "";
/**
* 链接
*/
private String URL = "";
/**
* 收缩
*/
private Boolean State = false;
/**
* 排序
*/
private String Sort = "";
/**
* 启用
*/
private Boolean Enabled = false;
/**
* 类型
*/
private String Type = "";
/**
* 拥有的功能列表
*/
private String hasFunctions= "";
/**
* 分类ID
*/
private Long functionsID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String functionsIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* UBTypeUserBusiness类型
*/
private String UBType = "";
/**
* UBKeyIdUserBusiness关键id
*/
private String UBKeyId = "";
public FunctionsShowModel getShowModel() {
return showModel;
}
public void setShowModel(FunctionsShowModel showModel) {
this.showModel = showModel;
}
public String getNumber() {
return Number;
}
public void setNumber(String number) {
Number = number;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getPNumber() {
return PNumber;
}
public void setPNumber(String pNumber) {
PNumber = pNumber;
}
public String getURL() {
return URL;
}
public void setURL(String uRL) {
URL = uRL;
}
public Boolean getState() {
return State;
}
public void setState(Boolean state) {
State = state;
}
public String getSort() {
return Sort;
}
public void setSort(String sort) {
Sort = sort;
}
public Boolean getEnabled() {
return Enabled;
}
public void setEnabled(Boolean enabled) {
Enabled = enabled;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public Long getFunctionsID() {
return functionsID;
}
public void setFunctionsID(Long functionsID) {
this.functionsID = functionsID;
}
public String getFunctionsIDs() {
return functionsIDs;
}
public void setFunctionsIDs(String functionsIDs) {
this.functionsIDs = functionsIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getUBType() {
return UBType;
}
public void setUBType(String uBType) {
UBType = uBType;
}
public String getUBKeyId() {
return UBKeyId;
}
public void setUBKeyId(String uBKeyId) {
UBKeyId = uBKeyId;
}
public String getHasFunctions() {
return hasFunctions;
}
public void setHasFunctions(String hasFunctions) {
this.hasFunctions = hasFunctions;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class FunctionsShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,200 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class LogModel implements Serializable
{
private LogShowModel showModel = new LogShowModel();
/**======开始接受页面参数=================**/
/**
* 用户ID
*/
private Long usernameID ;
/**
* 操作
*/
private String operation;
/**
* 开始时间
*/
private String beginTime;
/**
* 结束时间
*/
private String endTime;
/**
* 是否成功 0==成功 1==失败
*/
private Short status;
/**
* 操作具体内容
*/
private String contentdetails;
/**
* 描述信息
*/
private String remark = "";
/**
* 日志ID
*/
private Long logID = 0l;
/**
* 日志IDs 批量操作使用
*/
private String logIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public LogShowModel getShowModel() {
return showModel;
}
public void setShowModel(LogShowModel showModel) {
this.showModel = showModel;
}
public Long getLogID()
{
return logID;
}
public void setLogID(Long logID)
{
this.logID = logID;
}
public String getLogIDs()
{
return logIDs;
}
public void setLogIDs(String logIDs)
{
this.logIDs = logIDs;
}
public int getPageSize()
{
return pageSize;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageNo()
{
return pageNo;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public String getClientIp()
{
return clientIp;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public Long getUsernameID()
{
return usernameID;
}
public void setUsernameID(Long usernameID)
{
this.usernameID = usernameID;
}
public String getOperation()
{
return operation;
}
public void setOperation(String operation)
{
this.operation = operation;
}
public String getBeginTime()
{
if(null == beginTime || beginTime.length() == 0)
return beginTime;
return beginTime + " 00:00:00";
}
public void setBeginTime(String beginTime)
{
this.beginTime = beginTime;
}
public String getEndTime()
{
if(null == endTime || endTime.length() ==0)
return endTime;
return endTime + " 23:59:59";
}
public void setEndTime(String endTime)
{
this.endTime = endTime;
}
public Short getStatus()
{
return status;
}
public void setStatus(Short status)
{
this.status = status;
}
public String getContentdetails()
{
return contentdetails;
}
public void setContentdetails(String contentdetails)
{
this.contentdetails = contentdetails;
}
public String getRemark()
{
return remark;
}
public void setRemark(String remark)
{
this.remark = remark;
}
}

View File

@@ -0,0 +1,43 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class LogShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
/**
* 系统数据
*/
@SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>();
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
@SuppressWarnings("rawtypes")
public Map<String, List> getMap()
{
return map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map)
{
this.map = map;
}
}

View File

@@ -0,0 +1,123 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class RoleModel implements Serializable
{
private RoleShowModel showModel = new RoleShowModel();
/**======开始接受页面参数=================**/
/**
* 角色名称
*/
private String Name = "";
/**
* 分类ID
*/
private Long roleID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String roleIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* UBTypeUserBusiness类型
*/
private String UBType = "";
/**
* UBKeyIdUserBusiness关键id
*/
private String UBKeyId = "";
public RoleShowModel getShowModel() {
return showModel;
}
public void setShowModel(RoleShowModel showModel) {
this.showModel = showModel;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public Long getRoleID() {
return roleID;
}
public void setRoleID(Long roleID) {
this.roleID = roleID;
}
public String getRoleIDs() {
return roleIDs;
}
public void setRoleIDs(String roleIDs) {
this.roleIDs = roleIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getUBType() {
return UBType;
}
public void setUBType(String uBType) {
UBType = uBType;
}
public String getUBKeyId() {
return UBKeyId;
}
public void setUBKeyId(String uBKeyId) {
UBKeyId = uBKeyId;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class RoleShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,177 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class SupplierModel implements Serializable
{
private SupplierShowModel showModel = new SupplierShowModel();
/**======开始接受页面参数=================**/
/**
* 供应商名称
*/
private String supplier = "";
/**
* 类型
*/
private String type = "";
/**
* 联系人
*/
private String contacts = "";
/**
* 联系电话
*/
private String phonenum = "";
/**
* 电子邮箱
*/
private String email = "";
/**
* 描述信息
*/
private String description = "";
/**
* 启用
*/
private Boolean enabled = false;
/**
* 供应商ID
*/
private Long supplierID = 0l;
/**
* 供应商IDs 批量操作使用
*/
private String supplierIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public SupplierShowModel getShowModel() {
return showModel;
}
public void setShowModel(SupplierShowModel showModel) {
this.showModel = showModel;
}
public String getSupplier() {
return supplier;
}
public void setSupplier(String supplier) {
this.supplier = supplier;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getContacts() {
return contacts;
}
public void setContacts(String contacts) {
this.contacts = contacts;
}
public String getPhonenum() {
return phonenum;
}
public void setPhonenum(String phonenum) {
this.phonenum = phonenum;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public Long getSupplierID() {
return supplierID;
}
public void setSupplierID(Long supplierID) {
this.supplierID = supplierID;
}
public String getSupplierIDs() {
return supplierIDs;
}
public void setSupplierIDs(String supplierIDs) {
this.supplierIDs = supplierIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
}

View File

@@ -0,0 +1,42 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class SupplierShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
/**
* 系统数据
*/
@SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>();
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
@SuppressWarnings("rawtypes")
public Map<String, List> getMap() {
return map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
}

View File

@@ -0,0 +1,123 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class UserBusinessModel implements Serializable
{
private UserBusinessShowModel showModel = new UserBusinessShowModel();
/**======开始接受页面参数=================**/
/**
* 角色名称
*/
private String Type = "";
/**
* 主ID
*/
private String KeyId = "";
/**
* 值
*/
private String Value = "";
/**
* 分类ID
*/
private Long userBusinessID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String userBusinessIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public UserBusinessShowModel getShowModel() {
return showModel;
}
public void setShowModel(UserBusinessShowModel showModel) {
this.showModel = showModel;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getKeyId() {
return KeyId;
}
public void setKeyId(String keyId) {
KeyId = keyId;
}
public String getValue() {
return Value;
}
public void setValue(String value) {
Value = value;
}
public Long getUserBusinessID() {
return userBusinessID;
}
public void setUserBusinessID(Long userBusinessID) {
this.userBusinessID = userBusinessID;
}
public String getUserBusinessIDs() {
return userBusinessIDs;
}
public void setUserBusinessIDs(String userBusinessIDs) {
this.userBusinessIDs = userBusinessIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
}

View File

@@ -0,0 +1,43 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class UserBusinessShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
/**
* 系统数据
*/
@SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>();
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
@SuppressWarnings("rawtypes")
public Map<String, List> getMap() {
return map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
}

View File

@@ -0,0 +1,255 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class UserModel implements Serializable
{
private UserShowModel showModel = new UserShowModel();
/*+++++用户登录开始+++++++++++*/
private String username = "" ;
private String password = "" ;
/*+++++用户登录结束+++++++++++*/
/**
* ===============以下处理用户管理部分===============
*/
/**
* 用户登录名称
*/
private String loginame;
/**
* 职位
*/
private String position;
/**
* 部门
*/
private String department;
/**
* 电子邮件
*/
private String email;
/**
* 电话号码
*/
private String phonenum;
/**
* 是否管理员 0 ==管理员 1==非管理员
*/
private Short ismanager = 1;
/**
* 用户描述
*/
private String description;
/**
* 用户ID
*/
private Long userID = 0l;
/**
* 用户IDs 批量操作使用
*/
private String userIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称
*/
private int checkFlag = 0;
private String orgpwd = "";
public String getClientIp()
{
return clientIp;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getUsername()
{
return username;
}
public void setUsername(String username)
{
this.username = username;
}
public String getPassword()
{
return password;
}
public void setPassword(String password)
{
this.password = password;
}
public UserShowModel getShowModel()
{
return showModel;
}
public void setShowModel(UserShowModel showModel)
{
this.showModel = showModel;
}
public String getLoginame()
{
return loginame;
}
public void setLoginame(String loginame)
{
this.loginame = loginame;
}
public String getPosition()
{
return position;
}
public void setPosition(String position)
{
this.position = position;
}
public String getDepartment()
{
return department;
}
public void setDepartment(String department)
{
this.department = department;
}
public String getEmail()
{
return email;
}
public void setEmail(String email)
{
this.email = email;
}
public String getPhonenum()
{
return phonenum;
}
public void setPhonenum(String phonenum)
{
this.phonenum = phonenum;
}
public Short getIsmanager()
{
return ismanager;
}
public void setIsmanager(Short ismanager)
{
this.ismanager = ismanager;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Long getUserID()
{
return userID;
}
public void setUserID(Long userID)
{
this.userID = userID;
}
public String getUserIDs()
{
return userIDs;
}
public void setUserIDs(String userIDs)
{
this.userIDs = userIDs;
}
public int getPageSize()
{
return pageSize;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageNo()
{
return pageNo;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getCheckFlag()
{
return checkFlag;
}
public void setCheckFlag(int checkFlag)
{
this.checkFlag = checkFlag;
}
public String getOrgpwd()
{
return orgpwd;
}
public void setOrgpwd(String orgpwd)
{
this.orgpwd = orgpwd;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class UserShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,184 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class VisitAccountModel implements Serializable
{
private VisitAccountShowModel showModel = new VisitAccountShowModel();
/**======开始接受页面参数=================**/
/**
* ProjectId
*/
private Long ProjectId;
/**
* 楼号
*/
private String LouHao = "";
/**
* 户号
*/
private String HuHao = "";
/**
* 回访情况
*/
private String HuiFang = "";
/**
* 落实情况
*/
private String LuoShi = "";
/**
* 住户姓名
*/
private String Name = "";
/**
* 电话
*/
private String Tel = "";
/**
* 时间
*/
private String AddTime = "";
/**
* 分类ID
*/
private Long visitAccountID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String visitAccountIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public VisitAccountShowModel getShowModel() {
return showModel;
}
public void setShowModel(VisitAccountShowModel showModel) {
this.showModel = showModel;
}
public Long getProjectId() {
return ProjectId;
}
public void setProjectId(Long projectId) {
ProjectId = projectId;
}
public String getLouHao() {
return LouHao;
}
public void setLouHao(String louHao) {
LouHao = louHao;
}
public String getHuHao() {
return HuHao;
}
public void setHuHao(String huHao) {
HuHao = huHao;
}
public String getHuiFang() {
return HuiFang;
}
public void setHuiFang(String huiFang) {
HuiFang = huiFang;
}
public String getLuoShi() {
return LuoShi;
}
public void setLuoShi(String luoShi) {
LuoShi = luoShi;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getTel() {
return Tel;
}
public void setTel(String tel) {
Tel = tel;
}
public String getAddTime() {
return AddTime;
}
public void setAddTime(String addTime) {
AddTime = addTime;
}
public Long getVisitAccountID() {
return visitAccountID;
}
public void setVisitAccountID(Long visitAccountID) {
this.visitAccountID = visitAccountID;
}
public String getVisitAccountIDs() {
return visitAccountIDs;
}
public void setVisitAccountIDs(String visitAccountIDs) {
this.visitAccountIDs = visitAccountIDs;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
}

View File

@@ -0,0 +1,22 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class VisitAccountShowModel implements Serializable
{
/**
* 提示信息
*/
private String msgTip = "";
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}