"vscode:/vscode.git/clone" did not exist on "3ecffb1554d1cbe376f29a59a72039785af221a7"
Commit e85498f6 authored by 季圣华's avatar 季圣华
Browse files

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

parent 11f18afa
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;
}
}
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;
}
}
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 = "";
/**
* UBType,UserBusiness类型
*/
private String UBType = "";
/**
* UBKeyId,UserBusiness关键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;
}
}
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;
}
}
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 = "";
/**
* UBType,UserBusiness类型
*/
private String UBType = "";
/**
* UBKeyId,UserBusiness关键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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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 = "";
/**
* UBType,UserBusiness类型
*/
private String UBType = "";
/**
* UBKeyId,UserBusiness关键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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}}
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;
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment