升级代码结构,采用Maven来管理jar包(10)

This commit is contained in:
季圣华
2017-02-15 22:55:46 +08:00
parent 11f18afad6
commit e85498f6f4
185 changed files with 19714 additions and 0 deletions

View File

@@ -0,0 +1,429 @@
package com.jsh.model.vo.asset;
import java.io.File;
import java.io.InputStream;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AssetModel implements Serializable
{
private AssetShowModel showModel = new AssetShowModel();
/**======开始接受页面参数=================**/
/**
* 资产名称ID
*/
private Long assetNameID ;
/**
* 资产类型ID
*/
private Long assetCategoryID ;
/**
* 位置属性
*/
private String location = "";
/**
* 状态属性
*/
private Short status ;
/**
* 用户ID
*/
private Long userID ;
/**
* 资产单价
*/
private double price = 0;
/**
* 购买日期
*/
private String purchasedate = "";
/**
* 有效日期
*/
private String periodofvalidity = "";
/**
* 保修日期
*/
private String warrantydate = "";
/**
* 资产编号
*/
private String assetnum = "";
/**
* 资产序列号
*/
private String serialnum = "";
/**
* 标签
*/
private String labels = "";
/**
* 资产ID
*/
private Long supplierID;
/**
* 描述信息
*/
private String description = "";
/**
* 资产ID
*/
private Long assetID;
/**
* 资产IDs 批量操作使用
*/
private String assetIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* 输入流导出excel文件
*/
private InputStream excelStream;
/**
* 文件名称
*/
private String fileName = "";
/**
* 是否全部数据--根据搜索条件
*/
private String isAllData = "";
/**
* 浏览器类型--中文字符乱码问题解决火狐和IE下字符类型不一样
*/
private String browserType = "";
/**
* 导入excel文件
*/
private File assetFile;
/**
* 文件类型
*/
private String assetFileContentType;
/**
* 文件名称
*/
private String assetFileFileName;
/**
* 是否只手工检查数据 0==检查 1==不检查直接导入数据库中
*/
private Integer isCheck;
public AssetShowModel getShowModel()
{
return showModel;
}
public void setShowModel(AssetShowModel showModel)
{
this.showModel = showModel;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Long getAssetID()
{
return assetID;
}
public void setAssetID(Long assetID)
{
this.assetID = assetID;
}
public String getAssetIDs()
{
return assetIDs;
}
public void setAssetIDs(String assetIDs)
{
this.assetIDs = assetIDs;
}
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 getAssetNameID()
{
return assetNameID;
}
public void setAssetNameID(Long assetNameID)
{
this.assetNameID = assetNameID;
}
public Long getAssetCategoryID()
{
return assetCategoryID;
}
public void setAssetCategoryID(Long assetCategoryID)
{
this.assetCategoryID = assetCategoryID;
}
public String getLocation()
{
return location;
}
public void setLocation(String location)
{
this.location = location;
}
public Short getStatus()
{
return status;
}
public void setStatus(Short status)
{
this.status = status;
}
public Long getUserID()
{
return userID;
}
public void setUserID(Long userID)
{
this.userID = userID;
}
public double getPrice()
{
return price;
}
public void setPrice(double price)
{
this.price = price;
}
public String getPurchasedate()
{
return purchasedate;
}
public void setPurchasedate(String purchasedate)
{
this.purchasedate = purchasedate;
}
public String getPeriodofvalidity()
{
return periodofvalidity;
}
public void setPeriodofvalidity(String periodofvalidity)
{
this.periodofvalidity = periodofvalidity;
}
public String getWarrantydate()
{
return warrantydate;
}
public void setWarrantydate(String warrantydate)
{
this.warrantydate = warrantydate;
}
public String getLabels()
{
return labels;
}
public void setLabels(String labels)
{
this.labels = labels;
}
public Long getSupplierID()
{
return supplierID;
}
public void setSupplierID(Long supplierID)
{
this.supplierID = supplierID;
}
public String getAssetnum()
{
return assetnum;
}
public void setAssetnum(String assetnum)
{
this.assetnum = assetnum;
}
public String getSerialnum()
{
return serialnum;
}
public void setSerialnum(String serialnum)
{
this.serialnum = serialnum;
}
public InputStream getExcelStream()
{
return excelStream;
}
public void setExcelStream(InputStream excelStream)
{
this.excelStream = excelStream;
}
public String getFileName()
{
return fileName;
}
public void setFileName(String fileName)
{
this.fileName = fileName;
}
public String getIsAllData()
{
return isAllData;
}
public void setIsAllData(String isAllData)
{
this.isAllData = isAllData;
}
public String getBrowserType()
{
return browserType;
}
public void setBrowserType(String browserType)
{
this.browserType = browserType;
}
public File getAssetFile()
{
return assetFile;
}
public void setAssetFile(File assetFile)
{
this.assetFile = assetFile;
}
public Integer getIsCheck()
{
return isCheck;
}
public void setIsCheck(Integer isCheck)
{
this.isCheck = isCheck;
}
public String getAssetFileContentType()
{
return assetFileContentType;
}
public void setAssetFileContentType(String assetFileContentType)
{
this.assetFileContentType = assetFileContentType;
}
public String getAssetFileFileName()
{
return assetFileFileName;
}
public void setAssetFileFileName(String assetFileFileName)
{
this.assetFileFileName = assetFileFileName;
}
}

View File

@@ -0,0 +1,43 @@
package com.jsh.model.vo.asset;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings({ "serial" })
public class AssetShowModel 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,321 @@
package com.jsh.model.vo.asset;
import java.io.Serializable;
@SuppressWarnings("serial")
public class ReportModel implements Serializable
{
private ReportShowModel showModel = new ReportShowModel();
/**======开始接受页面参数=================**/
/**
* 资产名称ID
*/
private Long assetNameID ;
/**
* 资产类型ID
*/
private Long assetCategoryID ;
/**
* 位置属性
*/
private String location = "";
/**
* 状态属性
*/
private Short status ;
/**
* 用户ID
*/
private Long usernameID ;
/**
* 资产单价
*/
private float price = 0;
/**
* 购买日期
*/
private String purchasedate = "";
/**
* 有效日期
*/
private String periodofvalidity = "";
/**
* 保修日期
*/
private String warrantydate = "";
/**
* 资产编号
*/
private String assetnum = "";
/**
* 资产序列号
*/
private String serialnum = "";
/**
* 标签
*/
private String labels = "";
/**
* 资产ID
*/
private Long supplierID;
/**
* 描述信息
*/
private String description = "";
/**
* 资产ID
*/
private Long assetID;
/**
* 资产IDs 批量操作使用
*/
private String assetIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* 报表类型
*/
private Integer reportType;
public ReportShowModel getShowModel()
{
return showModel;
}
public void setShowModel(ReportShowModel showModel)
{
this.showModel = showModel;
}
public Long getAssetNameID()
{
return assetNameID;
}
public void setAssetNameID(Long assetNameID)
{
this.assetNameID = assetNameID;
}
public Long getAssetCategoryID()
{
return assetCategoryID;
}
public void setAssetCategoryID(Long assetCategoryID)
{
this.assetCategoryID = assetCategoryID;
}
public String getLocation()
{
return location;
}
public void setLocation(String location)
{
this.location = location;
}
public Short getStatus()
{
return status;
}
public void setStatus(Short status)
{
this.status = status;
}
public Long getUsernameID()
{
return usernameID;
}
public void setUsernameID(Long usernameID)
{
this.usernameID = usernameID;
}
public float getPrice()
{
return price;
}
public void setPrice(float price)
{
this.price = price;
}
public String getPurchasedate()
{
return purchasedate;
}
public void setPurchasedate(String purchasedate)
{
this.purchasedate = purchasedate;
}
public String getPeriodofvalidity()
{
return periodofvalidity;
}
public void setPeriodofvalidity(String periodofvalidity)
{
this.periodofvalidity = periodofvalidity;
}
public String getWarrantydate()
{
return warrantydate;
}
public void setWarrantydate(String warrantydate)
{
this.warrantydate = warrantydate;
}
public String getAssetnum()
{
return assetnum;
}
public void setAssetnum(String assetnum)
{
this.assetnum = assetnum;
}
public String getSerialnum()
{
return serialnum;
}
public void setSerialnum(String serialnum)
{
this.serialnum = serialnum;
}
public String getLabels()
{
return labels;
}
public void setLabels(String labels)
{
this.labels = labels;
}
public Long getSupplierID()
{
return supplierID;
}
public void setSupplierID(Long supplierID)
{
this.supplierID = supplierID;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Long getAssetID()
{
return assetID;
}
public void setAssetID(Long assetID)
{
this.assetID = assetID;
}
public String getAssetIDs()
{
return assetIDs;
}
public void setAssetIDs(String assetIDs)
{
this.assetIDs = assetIDs;
}
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 Integer getReportType()
{
return reportType;
}
public void setReportType(Integer reportType)
{
this.reportType = reportType;
}
}

View File

@@ -0,0 +1,34 @@
package com.jsh.model.vo.asset;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@SuppressWarnings({"serial","rawtypes"})
public class ReportShowModel implements Serializable
{
//保存报表数据
private List reportData = new ArrayList();
//保存提示信息
private String msgTip = "";
public List getReportData()
{
return reportData;
}
public void setReportData(List reportData)
{
this.reportData = reportData;
}
public String getMsgTip()
{
return msgTip;
}
public void setMsgTip(String msgTip)
{
this.msgTip = msgTip;
}
}

View File

@@ -0,0 +1,170 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AccountModel implements Serializable
{
private AccountShowModel showModel = new AccountShowModel();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private String name = "";
/**
* 编号
*/
private String serialNo = "";
/**
* 期初金额
*/
private Double initialAmount;
/**
* 当前余额
*/
private Double currentAmount;
/**
* 备注
*/
private String remark = "";
/**
* 分类ID
*/
private Long accountID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String accountIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public void setShowModel(AccountShowModel showModel)
{
this.showModel = showModel;
}
public AccountShowModel getShowModel()
{
return showModel;
}
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
public void setSerialNo(String serialNo)
{
this.serialNo = serialNo;
}
public String getSerialNo()
{
return serialNo;
}
public void setInitialAmount(Double initialAmount)
{
this.initialAmount = initialAmount;
}
public Double getInitialAmount()
{
return initialAmount;
}
public void setCurrentAmount(Double currentAmount)
{
this.currentAmount = currentAmount;
}
public Double getCurrentAmount()
{
return currentAmount;
}
public void setRemark(String remark)
{
this.remark = remark;
}
public String getRemark()
{
return remark;
}
public void setAccountID(Long accountID)
{
this.accountID = accountID;
}
public Long getAccountID()
{
return accountID;
}
public void setAccountIDs(String accountIDs)
{
this.accountIDs = accountIDs;
}
public String getAccountIDs()
{
return accountIDs;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageSize()
{
return pageSize;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getPageNo()
{
return pageNo;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getClientIp()
{
return 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 AccountShowModel 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,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,140 @@
package com.jsh.model.vo.basic;
import java.io.Serializable;
@SuppressWarnings("serial")
public class InOutItemModel implements Serializable
{
private InOutItemShowModel showModel = new InOutItemShowModel();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private String name = "";
/**
* 类型
*/
private String type = "";
/**
* 备注
*/
private String remark = "";
/**
* 分类ID
*/
private Long inOutItemID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String inOutItemIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public void setShowModel(InOutItemShowModel showModel)
{
this.showModel = showModel;
}
public InOutItemShowModel getShowModel()
{
return showModel;
}
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
public void setType(String type)
{
this.type = type;
}
public String getType()
{
return type;
}
public void setRemark(String remark)
{
this.remark = remark;
}
public String getRemark()
{
return remark;
}
public void setInOutItemID(Long inOutItemID)
{
this.inOutItemID = inOutItemID;
}
public Long getInOutItemID()
{
return inOutItemID;
}
public void setInOutItemIDs(String inOutItemIDs)
{
this.inOutItemIDs = inOutItemIDs;
}
public String getInOutItemIDs()
{
return inOutItemIDs;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageSize()
{
return pageSize;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getPageNo()
{
return pageNo;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getClientIp()
{
return 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 InOutItemShowModel 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,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,237 @@
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 Double BeginNeedGet;
/**
* 期初应付
*/
private Double BeginNeedPay;
/**
* 累计应收
*/
private Double AllNeedGet;
/**
* 累计应付
*/
private Double AllNeedPay;
/**
* 描述信息
*/
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 void setBeginNeedGet(Double beginNeedGet)
{
BeginNeedGet = beginNeedGet;
}
public Double getBeginNeedGet()
{
return BeginNeedGet;
}
public void setBeginNeedPay(Double beginNeedPay)
{
BeginNeedPay = beginNeedPay;
}
public Double getBeginNeedPay()
{
return BeginNeedPay;
}
public void setAllNeedGet(Double allNeedGet)
{
AllNeedGet = allNeedGet;
}
public Double getAllNeedGet()
{
return AllNeedGet;
}
public void setAllNeedPay(Double allNeedPay)
{
AllNeedPay = allNeedPay;
}
public Double getAllNeedPay()
{
return AllNeedPay;
}
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,225 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AccountHeadModel implements Serializable
{
private AccountHeadShowModel showModel = new AccountHeadShowModel();
/**======开始接受页面参数=================**/
private String Type;
private Long OrganId;
private Long HandsPersonId;
private Double ChangeAmount;
private Double TotalPrice;
private Long AccountId;
private String BillNo;
private String BillTime;
private String Remark;
private String BeginTime; //查询开始时间
private String EndTime; //查询结束时间
private String MonthTime; //查询月份
/**
* 分类ID
*/
private Long accountHeadID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String accountHeadIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public void setShowModel(AccountHeadShowModel showModel)
{
this.showModel = showModel;
}
public AccountHeadShowModel getShowModel()
{
return showModel;
}
public void setType(String type)
{
Type = type;
}
public String getType()
{
return Type;
}
public void setOrganId(Long organId)
{
OrganId = organId;
}
public Long getOrganId()
{
return OrganId;
}
public void setHandsPersonId(Long handsPersonId)
{
HandsPersonId = handsPersonId;
}
public Long getHandsPersonId()
{
return HandsPersonId;
}
public void setChangeAmount(Double changeAmount)
{
ChangeAmount = changeAmount;
}
public Double getChangeAmount()
{
return ChangeAmount;
}
public void setTotalPrice(Double totalPrice) {
TotalPrice = totalPrice;
}
public Double getTotalPrice() {
return TotalPrice;
}
public void setAccountId(Long accountId)
{
AccountId = accountId;
}
public Long getAccountId()
{
return AccountId;
}
public void setBillNo(String billNo)
{
BillNo = billNo;
}
public String getBillNo()
{
return BillNo;
}
public void setBillTime(String billTime)
{
BillTime = billTime;
}
public String getBillTime()
{
return BillTime;
}
public void setRemark(String remark)
{
Remark = remark;
}
public String getRemark()
{
return Remark;
}
public void setBeginTime(String beginTime)
{
BeginTime = beginTime;
}
public String getBeginTime()
{
return BeginTime;
}
public void setEndTime(String endTime)
{
EndTime = endTime;
}
public String getEndTime()
{
return EndTime;
}
public void setMonthTime(String monthTime)
{
MonthTime = monthTime;
}
public String getMonthTime()
{
return MonthTime;
}
public void setAccountHeadID(Long accountHeadID)
{
this.accountHeadID = accountHeadID;
}
public Long getAccountHeadID()
{
return accountHeadID;
}
public void setAccountHeadIDs(String accountHeadIDs)
{
this.accountHeadIDs = accountHeadIDs;
}
public String getAccountHeadIDs()
{
return accountHeadIDs;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageSize()
{
return pageSize;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getPageNo()
{
return pageNo;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getClientIp()
{
return clientIp;
}}

View File

@@ -0,0 +1,42 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class AccountHeadShowModel 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,251 @@
package com.jsh.model.vo.materials;
import java.io.InputStream;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AccountItemModel implements Serializable
{
private AccountItemShowModel showModel = new AccountItemShowModel();
/**======开始接受页面参数=================**/
private Long HeaderId;
private Long AccountId;
private Long InOutItemId;
private Double EachAmount;
private String Remark = "";
private String Inserted = ""; //json插入记录
private String Deleted = ""; //json删除记录
private String Updated = ""; //json修改记录
private String HeadIds = ""; //表头集合列表
private String MonthTime = ""; //月份
private String browserType = "";
/**
* 文件名称
*/
private String fileName = "";
/**
* 分类ID
*/
private Long accountItemID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String accountItemIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 800;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* 输入流导出excel文件
*/
private InputStream excelStream;
public void setShowModel(AccountItemShowModel showModel)
{
this.showModel = showModel;
}
public AccountItemShowModel getShowModel()
{
return showModel;
}
public void setHeaderId(Long headerId)
{
HeaderId = headerId;
}
public Long getHeaderId()
{
return HeaderId;
}
public void setAccountId(Long accountId)
{
AccountId = accountId;
}
public Long getAccountId()
{
return AccountId;
}
public void setInOutItemId(Long inOutItemId)
{
InOutItemId = inOutItemId;
}
public Long getInOutItemId()
{
return InOutItemId;
}
public void setEachAmount(Double eachAmount)
{
EachAmount = eachAmount;
}
public Double getEachAmount()
{
return EachAmount;
}
public void setRemark(String remark)
{
Remark = remark;
}
public String getRemark()
{
return Remark;
}
public void setInserted(String inserted)
{
Inserted = inserted;
}
public String getInserted()
{
return Inserted;
}
public void setDeleted(String deleted)
{
Deleted = deleted;
}
public String getDeleted()
{
return Deleted;
}
public void setUpdated(String updated)
{
Updated = updated;
}
public String getUpdated()
{
return Updated;
}
public void setHeadIds(String headIds)
{
HeadIds = headIds;
}
public String getHeadIds()
{
return HeadIds;
}
public void setMonthTime(String monthTime)
{
MonthTime = monthTime;
}
public String getMonthTime()
{
return MonthTime;
}
public void setBrowserType(String browserType)
{
this.browserType = browserType;
}
public String getBrowserType()
{
return browserType;
}
public void setFileName(String fileName)
{
this.fileName = fileName;
}
public String getFileName()
{
return fileName;
}
public void setAccountItemID(Long accountItemID)
{
this.accountItemID = accountItemID;
}
public Long getAccountItemID()
{
return accountItemID;
}
public void setAccountItemIDs(String accountItemIDs)
{
this.accountItemIDs = accountItemIDs;
}
public String getAccountItemIDs()
{
return accountItemIDs;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageSize()
{
return pageSize;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getPageNo()
{
return pageNo;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getClientIp()
{
return clientIp;
}
public void setExcelStream(InputStream excelStream)
{
this.excelStream = excelStream;
}
public InputStream getExcelStream()
{
return excelStream;
}
}

View File

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

View File

@@ -0,0 +1,229 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class DepotHeadModel implements Serializable
{
private DepotHeadShowModel showModel = new DepotHeadShowModel();
/**======开始接受页面参数=================**/
private String Type = "";
private String SubType = "";
private Long ProjectId;
private String Number = "";
private String OperPersonName = "";
private String OperTime;
private Long OrganId;
private Long HandsPersonId;
private Long AccountId;
private Double ChangeAmount;
private Long AllocationProjectId;
private Double TotalPrice;
private String Remark = "";
private String BeginTime; //查询开始时间
private String EndTime; //查询结束时间
private String MonthTime; //查询月份
/**
* 分类ID
*/
private Long depotHeadID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String depotHeadIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public DepotHeadShowModel getShowModel() {
return showModel;
}
public void setShowModel(DepotHeadShowModel showModel) {
this.showModel = showModel;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getSubType() {
return SubType;
}
public void setSubType(String subType) {
SubType = subType;
}
public Long getProjectId() {
return ProjectId;
}
public void setProjectId(Long projectId) {
ProjectId = projectId;
}
public String getNumber() {
return Number;
}
public void setNumber(String number) {
Number = number;
}
public String getOperPersonName() {
return OperPersonName;
}
public void setOperPersonName(String operPersonName) {
OperPersonName = operPersonName;
}
public Long getOrganId() {
return OrganId;
}
public void setOrganId(Long organId) {
OrganId = organId;
}
public Long getHandsPersonId() {
return HandsPersonId;
}
public void setHandsPersonId(Long handsPersonId) {
HandsPersonId = handsPersonId;
}
public Long getAccountId() {
return AccountId;
}
public void setAccountId(Long accountId) {
AccountId = accountId;
}
public Double getChangeAmount() {
return ChangeAmount;
}
public void setChangeAmount(Double changeAmount) {
ChangeAmount = changeAmount;
}
public Long getAllocationProjectId() {
return AllocationProjectId;
}
public void setAllocationProjectId(Long allocationProjectId) {
AllocationProjectId = allocationProjectId;
}
public Double getTotalPrice() {
return TotalPrice;
}
public void setTotalPrice(Double totalPrice) {
TotalPrice = totalPrice;
}
public String getRemark() {
return Remark;
}
public void setRemark(String remark) {
Remark = remark;
}
public Long getDepotHeadID() {
return depotHeadID;
}
public void setDepotHeadID(Long depotHeadID) {
this.depotHeadID = depotHeadID;
}
public String getDepotHeadIDs() {
return depotHeadIDs;
}
public void setDepotHeadIDs(String depotHeadIDs) {
this.depotHeadIDs = depotHeadIDs;
}
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 getBeginTime() {
return BeginTime;
}
public void setBeginTime(String beginTime) {
BeginTime = beginTime;
}
public String getEndTime() {
return EndTime;
}
public void setEndTime(String endTime) {
EndTime = endTime;
}
public String getOperTime() {
return OperTime;
}
public void setOperTime(String operTime) {
OperTime = operTime;
}
public String getMonthTime() {
return MonthTime;
}
public void setMonthTime(String monthTime) {
MonthTime = monthTime;
}
}

View File

@@ -0,0 +1,42 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class DepotHeadShowModel 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,238 @@
package com.jsh.model.vo.materials;
import java.io.InputStream;
import java.io.Serializable;
@SuppressWarnings("serial")
public class DepotItemModel implements Serializable
{
private DepotItemShowModel showModel = new DepotItemShowModel();
/**======开始接受页面参数=================**/
private Long HeaderId;
private Long MaterialId;
private Double OperNumber;
private Double UnitPrice;
private Double AllPrice;
private String Remark = "";
private String Img = "";
private String Inserted = ""; //json插入记录
private String Deleted = ""; //json删除记录
private String Updated = ""; //json修改记录
private String HeadIds = ""; //表头集合列表
private String MaterialIds = ""; //材料列表
private String MonthTime = ""; //月份
private String browserType = "";
/**
* 文件名称
*/
private String fileName = "";
/**
* 分类ID
*/
private Long depotItemID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String depotItemIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 800;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
/**
* 输入流导出excel文件
*/
private InputStream excelStream;
public DepotItemShowModel getShowModel() {
return showModel;
}
public void setShowModel(DepotItemShowModel showModel) {
this.showModel = showModel;
}
public Long getHeaderId() {
return HeaderId;
}
public void setHeaderId(Long headerId) {
HeaderId = headerId;
}
public Long getMaterialId() {
return MaterialId;
}
public void setMaterialId(Long materialId) {
MaterialId = materialId;
}
public Double getOperNumber() {
return OperNumber;
}
public void setOperNumber(Double operNumber) {
OperNumber = operNumber;
}
public Double getUnitPrice() {
return UnitPrice;
}
public void setUnitPrice(Double unitPrice) {
UnitPrice = unitPrice;
}
public Double getAllPrice() {
return AllPrice;
}
public void setAllPrice(Double allPrice) {
AllPrice = allPrice;
}
public String getRemark() {
return Remark;
}
public void setRemark(String remark) {
Remark = remark;
}
public String getImg() {
return Img;
}
public void setImg(String img) {
Img = img;
}
public Long getDepotItemID() {
return depotItemID;
}
public void setDepotItemID(Long depotItemID) {
this.depotItemID = depotItemID;
}
public String getDepotItemIDs() {
return depotItemIDs;
}
public void setDepotItemIDs(String depotItemIDs) {
this.depotItemIDs = depotItemIDs;
}
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 getInserted() {
return Inserted;
}
public void setInserted(String inserted) {
Inserted = inserted;
}
public String getDeleted() {
return Deleted;
}
public void setDeleted(String deleted) {
Deleted = deleted;
}
public String getUpdated() {
return Updated;
}
public void setUpdated(String updated) {
Updated = updated;
}
public String getHeadIds() {
return HeadIds;
}
public void setHeadIds(String headIds) {
HeadIds = headIds;
}
public String getMonthTime() {
return MonthTime;
}
public void setMonthTime(String monthTime) {
MonthTime = monthTime;
}
public String getMaterialIds() {
return MaterialIds;
}
public void setMaterialIds(String materialIds) {
MaterialIds = materialIds;
}
public String getBrowserType() {
return browserType;
}
public void setBrowserType(String browserType) {
this.browserType = browserType;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public InputStream getExcelStream() {
return excelStream;
}
public void setExcelStream(InputStream excelStream) {
this.excelStream = excelStream;
}
}

View File

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

View File

@@ -0,0 +1,123 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class MaterialCategoryModel implements Serializable
{
private MaterialCategoryShowModel showModel = new MaterialCategoryShowModel();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private String Name = "";
/**
* 等级
*/
private Short CategoryLevel;
/**
* ParentId
*/
private Long ParentId;
/**
* 分类ID
*/
private Long materialCategoryID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String materialCategoryIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public MaterialCategoryShowModel getShowModel() {
return showModel;
}
public void setShowModel(MaterialCategoryShowModel showModel) {
this.showModel = showModel;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public Short getCategoryLevel() {
return CategoryLevel;
}
public void setCategoryLevel(Short categoryLevel) {
CategoryLevel = categoryLevel;
}
public Long getParentId() {
return ParentId;
}
public void setParentId(Long parentId) {
ParentId = parentId;
}
public Long getMaterialCategoryID() {
return materialCategoryID;
}
public void setMaterialCategoryID(Long materialCategoryID) {
this.materialCategoryID = materialCategoryID;
}
public String getMaterialCategoryIDs() {
return materialCategoryIDs;
}
public void setMaterialCategoryIDs(String materialCategoryIDs) {
this.materialCategoryIDs = materialCategoryIDs;
}
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.materials;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class MaterialCategoryShowModel 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,235 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class MaterialModel implements Serializable
{
private MaterialShowModel showModel = new MaterialShowModel();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private String Name = "";
/**
* 型号
*/
private String Model = "";
/**
* 颜色
*/
private String Color = "";
/**
* 单位
*/
private String Unit = "";
/**
* 零售价
*/
private Double RetailPrice;
/**
* 最低售价
*/
private Double LowPrice;
/**
* 预设售价一
*/
private Double PresetPriceOne;
/**
* 预设售价二
*/
private Double PresetPriceTwo;
/**
* 备注
*/
private String Remark = "";
/**
* CategoryId
*/
private Long CategoryId;
/**
* CategoryIds 用于in子查询
*/
private String CategoryIds = "1";
/**
* 分类ID
*/
private Long materialID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String materialIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public MaterialShowModel getShowModel() {
return showModel;
}
public void setShowModel(MaterialShowModel showModel) {
this.showModel = showModel;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public String getModel() {
return Model;
}
public void setModel(String model) {
Model = model;
}
public String getColor() {
return Color;
}
public void setColor(String color) {
Color = color;
}
public String getUnit() {
return Unit;
}
public void setUnit(String unit) {
Unit = unit;
}
public void setRetailPrice(Double retailPrice)
{
RetailPrice = retailPrice;
}
public Double getRetailPrice()
{
return RetailPrice;
}
public void setLowPrice(Double lowPrice)
{
LowPrice = lowPrice;
}
public Double getLowPrice()
{
return LowPrice;
}
public void setPresetPriceOne(Double presetPriceOne)
{
PresetPriceOne = presetPriceOne;
}
public Double getPresetPriceOne()
{
return PresetPriceOne;
}
public void setPresetPriceTwo(Double presetPriceTwo)
{
PresetPriceTwo = presetPriceTwo;
}
public Double getPresetPriceTwo()
{
return PresetPriceTwo;
}
public String getRemark() {
return Remark;
}
public void setRemark(String remark) {
Remark = remark;
}
public Long getCategoryId() {
return CategoryId;
}
public void setCategoryId(Long categoryId) {
CategoryId = categoryId;
}
public Long getMaterialID() {
return materialID;
}
public void setMaterialID(Long materialID) {
this.materialID = materialID;
}
public String getMaterialIDs() {
return materialIDs;
}
public void setMaterialIDs(String materialIDs) {
this.materialIDs = materialIDs;
}
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 getCategoryIds() {
return CategoryIds;
}
public void setCategoryIds(String categoryIds) {
CategoryIds = categoryIds;
}
}

View File

@@ -0,0 +1,43 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class MaterialShowModel 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,109 @@
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class PersonModel implements Serializable
{
private PersonShowModel showModel = new PersonShowModel();
/**======开始接受页面参数=================**/
/**
* 类型
*/
private String Type = "";
/**
* 姓名
*/
private String Name = "";
/**
* 分类ID
*/
private Long personID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String personIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public PersonShowModel getShowModel() {
return showModel;
}
public void setShowModel(PersonShowModel showModel) {
this.showModel = showModel;
}
public String getType() {
return Type;
}
public void setType(String type) {
Type = type;
}
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
public Long getPersonID() {
return personID;
}
public void setPersonID(Long personID) {
this.personID = personID;
}
public String getPersonIDs() {
return personIDs;
}
public void setPersonIDs(String personIDs) {
this.personIDs = personIDs;
}
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.materials;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@SuppressWarnings("serial")
public class PersonShowModel 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;
}
}