Commit 07259995 authored by AlanGao's avatar AlanGao
Browse files

update

parent 458409b4
...@@ -5,369 +5,360 @@ import java.io.InputStream; ...@@ -5,369 +5,360 @@ import java.io.InputStream;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class SupplierModel implements Serializable public class SupplierModel implements Serializable {
{ private SupplierShowModel showModel = new SupplierShowModel();
private SupplierShowModel showModel = new SupplierShowModel();
/**======开始接受页面参数=================**/
/**======开始接受页面参数=================**/ /**
/** * 名称
* 名称 */
*/ private String supplier = "";
private String supplier = "";
/**
/** * 类型
* 类型 */
*/ private String type = "";
private String type = "";
/**
/** * 联系人
* 联系人 */
*/ private String contacts = "";
private String contacts = "";
/**
/** * 联系电话
* 联系电话 */
*/ private String phonenum = "";
private String phonenum = "";
/**
/** * 电子邮箱
* 电子邮箱 */
*/ private String email = "";
private String email = "";
/**
/**
* 预付款 * 预付款
*/ */
private Double AdvanceIn; private Double AdvanceIn;
/** /**
* 期初应收 * 期初应收
*/ */
private Double BeginNeedGet; private Double BeginNeedGet;
/** /**
* 期初应付 * 期初应付
*/ */
private Double BeginNeedPay; private Double BeginNeedPay;
/** /**
* 累计应收 * 累计应收
*/ */
private Double AllNeedGet; private Double AllNeedGet;
/** /**
* 累计应付 * 累计应付
*/ */
private Double AllNeedPay; private Double AllNeedPay;
/** /**
* 描述信息 * 描述信息
*/ */
private String description = ""; private String description = "";
private String fax = ""; private String fax = "";
private String telephone = ""; private String telephone = "";
private String address = ""; private String address = "";
private String taxNum = ""; private String taxNum = "";
private String bankName = ""; private String bankName = "";
private String accountNumber = ""; private String accountNumber = "";
private Double taxRate; private Double taxRate;
private String UBType = ""; //UBType,UserBusiness类型 private String UBType = ""; //UBType,UserBusiness类型
private String UBKeyId = ""; //UBKeyId,UserBusiness关键id private String UBKeyId = ""; //UBKeyId,UserBusiness关键id
/** /**
* 导入excel文件 * 导入excel文件
*/ */
private File supplierFile; private File supplierFile;
/** /**
* 启用 * 启用
*/ */
private Boolean enabled = false; private Boolean enabled = false;
/** /**
* 供应商ID * 供应商ID
*/ */
private Long supplierID = 0l; private Long supplierID = 0l;
/** /**
* 供应商IDs 批量操作使用 * 供应商IDs 批量操作使用
*/ */
private String supplierIDs = ""; private String supplierIDs = "";
/** /**
* 每页显示的个数 * 每页显示的个数
*/ */
private int pageSize = 10; private int pageSize = 10;
/** /**
* 当前页码 * 当前页码
*/ */
private int pageNo = 1; private int pageNo = 1;
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
private String browserType = ""; //浏览器类型 private String browserType = ""; //浏览器类型
private String fileName = ""; //文件名称 private String fileName = ""; //文件名称
private InputStream excelStream; //输入流,导出excel文件 private InputStream excelStream; //输入流,导出excel文件
public SupplierShowModel getShowModel() { public SupplierShowModel getShowModel() {
return showModel; return showModel;
} }
public void setShowModel(SupplierShowModel showModel) { public void setShowModel(SupplierShowModel showModel) {
this.showModel = showModel; this.showModel = showModel;
} }
public String getSupplier() { public String getSupplier() {
return supplier; return supplier;
} }
public void setSupplier(String supplier) { public void setSupplier(String supplier) {
this.supplier = supplier; this.supplier = supplier;
} }
public String getType() { public String getType() {
return type; return type;
} }
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
public String getContacts() { public String getContacts() {
return contacts; 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 Double getAdvanceIn() {
return AdvanceIn;
}
public void setAdvanceIn(Double advanceIn) {
AdvanceIn = advanceIn;
}
public void setBeginNeedGet(Double beginNeedGet)
{
BeginNeedGet = beginNeedGet;
} }
public Double getBeginNeedGet() 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 Double getAdvanceIn() {
return AdvanceIn;
}
public void setAdvanceIn(Double advanceIn) {
AdvanceIn = advanceIn;
}
public Double getBeginNeedGet() {
return BeginNeedGet; return BeginNeedGet;
} }
public void setBeginNeedPay(Double beginNeedPay) public void setBeginNeedGet(Double beginNeedGet) {
{ BeginNeedGet = beginNeedGet;
BeginNeedPay = beginNeedPay;
} }
public Double getBeginNeedPay() public Double getBeginNeedPay() {
{
return BeginNeedPay; return BeginNeedPay;
} }
public void setAllNeedGet(Double allNeedGet) public void setBeginNeedPay(Double beginNeedPay) {
{ BeginNeedPay = beginNeedPay;
AllNeedGet = allNeedGet;
} }
public Double getAllNeedGet() public Double getAllNeedGet() {
{
return AllNeedGet; return AllNeedGet;
} }
public void setAllNeedPay(Double allNeedPay) public void setAllNeedGet(Double allNeedGet) {
{ AllNeedGet = allNeedGet;
AllNeedPay = allNeedPay;
} }
public Double getAllNeedPay() public Double getAllNeedPay() {
{
return AllNeedPay; return AllNeedPay;
} }
public void setAllNeedPay(Double allNeedPay) {
AllNeedPay = allNeedPay;
}
public String getDescription() { public String getDescription() {
return description; return description;
} }
public void setDescription(String description) { public void setDescription(String description) {
this.description = description; this.description = description;
} }
public Boolean getEnabled() { public Boolean getEnabled() {
return enabled; return enabled;
} }
public void setEnabled(Boolean enabled) { public void setEnabled(Boolean enabled) {
this.enabled = enabled; this.enabled = enabled;
} }
public Long getSupplierID() { public Long getSupplierID() {
return supplierID; return supplierID;
} }
public void setSupplierID(Long supplierID) { public void setSupplierID(Long supplierID) {
this.supplierID = supplierID; this.supplierID = supplierID;
} }
public String getSupplierIDs() { public String getSupplierIDs() {
return supplierIDs; return supplierIDs;
} }
public void setSupplierIDs(String supplierIDs) { public void setSupplierIDs(String supplierIDs) {
this.supplierIDs = supplierIDs; this.supplierIDs = supplierIDs;
} }
public int getPageSize() { public int getPageSize() {
return pageSize; return pageSize;
} }
public void setPageSize(int pageSize) { public void setPageSize(int pageSize) {
this.pageSize = pageSize; this.pageSize = pageSize;
} }
public int getPageNo() { public int getPageNo() {
return pageNo; return pageNo;
} }
public void setPageNo(int pageNo) { public void setPageNo(int pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
} }
public String getClientIp() { public String getClientIp() {
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) { public void setClientIp(String clientIp) {
this.clientIp = clientIp; this.clientIp = clientIp;
} }
public String getFax() { public String getFax() {
return fax; return fax;
} }
public void setFax(String fax) { public void setFax(String fax) {
this.fax = fax; this.fax = fax;
} }
public String getTelephone() { public String getTelephone() {
return telephone; return telephone;
} }
public void setTelephone(String telephone) { public void setTelephone(String telephone) {
this.telephone = telephone; this.telephone = telephone;
} }
public String getAddress() { public String getAddress() {
return address; return address;
} }
public void setAddress(String address) { public void setAddress(String address) {
this.address = address; this.address = address;
} }
public String getTaxNum() { public String getTaxNum() {
return taxNum; return taxNum;
} }
public void setTaxNum(String taxNum) { public void setTaxNum(String taxNum) {
this.taxNum = taxNum; this.taxNum = taxNum;
} }
public String getBankName() { public String getBankName() {
return bankName; return bankName;
} }
public void setBankName(String bankName) { public void setBankName(String bankName) {
this.bankName = bankName; this.bankName = bankName;
} }
public String getAccountNumber() { public String getAccountNumber() {
return accountNumber; return accountNumber;
} }
public void setAccountNumber(String accountNumber) { public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber; this.accountNumber = accountNumber;
} }
public Double getTaxRate() { public Double getTaxRate() {
return taxRate; return taxRate;
} }
public void setTaxRate(Double taxRate) { public void setTaxRate(Double taxRate) {
this.taxRate = taxRate; this.taxRate = taxRate;
} }
public String getUBType() { public String getUBType() {
return UBType; return UBType;
} }
public void setUBType(String UBType) { public void setUBType(String UBType) {
this.UBType = UBType; this.UBType = UBType;
} }
public String getUBKeyId() { public String getUBKeyId() {
return UBKeyId; return UBKeyId;
} }
public void setUBKeyId(String UBKeyId) { public void setUBKeyId(String UBKeyId) {
this.UBKeyId = UBKeyId; this.UBKeyId = UBKeyId;
} }
public String getBrowserType() { public String getBrowserType() {
return browserType; return browserType;
} }
public void setBrowserType(String browserType) { public void setBrowserType(String browserType) {
this.browserType = browserType; this.browserType = browserType;
} }
public String getFileName() { public String getFileName() {
return fileName; return fileName;
} }
public void setFileName(String fileName) { public void setFileName(String fileName) {
this.fileName = fileName; this.fileName = fileName;
} }
public InputStream getExcelStream() { public InputStream getExcelStream() {
return excelStream; return excelStream;
} }
public void setExcelStream(InputStream excelStream) { public void setExcelStream(InputStream excelStream) {
this.excelStream = excelStream; this.excelStream = excelStream;
} }
public File getSupplierFile() { public File getSupplierFile() {
return supplierFile; return supplierFile;
} }
public void setSupplierFile(File supplierFile) { public void setSupplierFile(File supplierFile) {
this.supplierFile = supplierFile; this.supplierFile = supplierFile;
} }
} }
...@@ -6,37 +6,34 @@ import java.util.List; ...@@ -6,37 +6,34 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class SupplierShowModel implements Serializable public class SupplierShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
/** /**
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public Map<String, List> getMap() { public Map<String, List> getMap() {
return map; return map;
} }
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
} }
...@@ -3,75 +3,76 @@ package com.jsh.model.vo.basic; ...@@ -3,75 +3,76 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class SystemConfigModel implements Serializable public class SystemConfigModel implements Serializable {
{
private SystemConfigShowModel showModel = new SystemConfigShowModel(); private SystemConfigShowModel showModel = new SystemConfigShowModel();
/**======开始接受页面参数=================**/ /**
private Long id = 0l; * ======开始接受页面参数=================
**/
private Long id = 0l;
private String type = ""; private String type = "";
private String name = ""; private String name = "";
private String value = ""; private String value = "";
private String description = ""; private String description = "";
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
public SystemConfigShowModel getShowModel() { public SystemConfigShowModel getShowModel() {
return showModel; return showModel;
} }
public void setShowModel(SystemConfigShowModel showModel) { public void setShowModel(SystemConfigShowModel showModel) {
this.showModel = showModel; this.showModel = showModel;
} }
public Long getId() { public Long getId() {
return id; return id;
} }
public void setId(Long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
public String getType() { public String getType() {
return type; return type;
} }
public void setType(String type) { public void setType(String type) {
this.type = type; this.type = type;
} }
public String getName() { public String getName() {
return name; return name;
} }
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
public String getValue() { public String getValue() {
return value; return value;
} }
public void setValue(String value) { public void setValue(String value) {
this.value = value; this.value = value;
} }
public String getDescription() { public String getDescription() {
return description; return description;
} }
public void setDescription(String description) { public void setDescription(String description) {
this.description = description; this.description = description;
} }
public String getClientIp() { public String getClientIp() {
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) { public void setClientIp(String clientIp) {
this.clientIp = clientIp; this.clientIp = clientIp;
} }
} }
...@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic; ...@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class SystemConfigShowModel implements Serializable public class SystemConfigShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
} }
...@@ -3,96 +3,95 @@ package com.jsh.model.vo.basic; ...@@ -3,96 +3,95 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UnitModel implements Serializable public class UnitModel implements Serializable {
{ private DepotShowModel showModel = new DepotShowModel();
private DepotShowModel showModel = new DepotShowModel();
/**======开始接受页面参数=================**/
/**======开始接受页面参数=================**/ /**
/** * 名称
* 名称 */
*/ private String UName = "";
private String UName = "";
/**
/** * ID
* ID */
*/ private Long unitID = 0l;
private Long unitID = 0l;
/**
/** * IDs 批量操作使用
* IDs 批量操作使用 */
*/ private String unitIDs = "";
private String unitIDs = "";
/**
/** * 每页显示的个数
* 每页显示的个数 */
*/ private int pageSize = 10;
private int pageSize = 10;
/**
/** * 当前页码
* 当前页码 */
*/ private int pageNo = 1;
private int pageNo = 1;
/**
/** * 用户IP,用户记录操作日志
* 用户IP,用户记录操作日志 */
*/ private String clientIp = "";
private String clientIp = "";
public DepotShowModel getShowModel() {
public DepotShowModel getShowModel() { return showModel;
return showModel; }
}
public void setShowModel(DepotShowModel showModel) {
public void setShowModel(DepotShowModel showModel) { this.showModel = showModel;
this.showModel = showModel; }
}
public String getUName() {
public String getUName() { return UName;
return UName; }
}
public void setUName(String UName) {
public void setUName(String UName) { this.UName = UName;
this.UName = UName; }
}
public Long getUnitID() {
public Long getUnitID() { return unitID;
return unitID; }
}
public void setUnitID(Long unitID) {
public void setUnitID(Long unitID) { this.unitID = unitID;
this.unitID = unitID; }
}
public String getUnitIDs() {
public String getUnitIDs() { return unitIDs;
return unitIDs; }
}
public void setUnitIDs(String unitIDs) {
public void setUnitIDs(String unitIDs) { this.unitIDs = unitIDs;
this.unitIDs = unitIDs; }
}
public int getPageSize() {
public int getPageSize() { return pageSize;
return pageSize; }
}
public void setPageSize(int pageSize) {
public void setPageSize(int pageSize) { this.pageSize = pageSize;
this.pageSize = pageSize; }
}
public int getPageNo() {
public int getPageNo() { return pageNo;
return pageNo; }
}
public void setPageNo(int pageNo) {
public void setPageNo(int pageNo) { this.pageNo = pageNo;
this.pageNo = pageNo; }
}
public String getClientIp() {
public String getClientIp() { return clientIp;
return clientIp; }
}
public void setClientIp(String clientIp) {
public void setClientIp(String clientIp) { this.clientIp = clientIp;
this.clientIp = clientIp; }
}
} }
...@@ -6,38 +6,35 @@ import java.util.List; ...@@ -6,38 +6,35 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UnitShowModel implements Serializable public class UnitShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
/** /**
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public Map<String, List> getMap() { public Map<String, List> getMap() {
return map; return map;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) { public void setMap(Map<String, List> map) {
this.map = map; this.map = map;
} }
} }
...@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic; ...@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UserBusinessModel implements Serializable public class UserBusinessModel implements Serializable {
{
private UserBusinessShowModel showModel = new UserBusinessShowModel(); private UserBusinessShowModel showModel = new UserBusinessShowModel();
/**======开始接受页面参数=================**/ /**======开始接受页面参数=================**/
...@@ -12,121 +11,121 @@ public class UserBusinessModel implements Serializable ...@@ -12,121 +11,121 @@ public class UserBusinessModel implements Serializable
* 角色名称 * 角色名称
*/ */
private String Type = ""; private String Type = "";
/** /**
* 主ID * 主ID
*/ */
private String KeyId = ""; private String KeyId = "";
/** /**
* 值 * 值
*/ */
private String Value = ""; private String Value = "";
private String BtnStr = ""; private String BtnStr = "";
/** /**
* 分类ID * 分类ID
*/ */
private Long userBusinessID = 0l; private Long userBusinessID = 0l;
/** /**
* 分类IDs 批量操作使用 * 分类IDs 批量操作使用
*/ */
private String userBusinessIDs = ""; private String userBusinessIDs = "";
/** /**
* 每页显示的个数 * 每页显示的个数
*/ */
private int pageSize = 10; private int pageSize = 10;
/** /**
* 当前页码 * 当前页码
*/ */
private int pageNo = 1; private int pageNo = 1;
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
public UserBusinessShowModel getShowModel() { public UserBusinessShowModel getShowModel() {
return showModel; return showModel;
} }
public void setShowModel(UserBusinessShowModel showModel) { public void setShowModel(UserBusinessShowModel showModel) {
this.showModel = showModel; this.showModel = showModel;
} }
public String getType() { public String getType() {
return Type; return Type;
} }
public void setType(String type) { public void setType(String type) {
Type = type; Type = type;
} }
public String getKeyId() { public String getKeyId() {
return KeyId; return KeyId;
} }
public void setKeyId(String keyId) { public void setKeyId(String keyId) {
KeyId = keyId; KeyId = keyId;
} }
public String getValue() { public String getValue() {
return Value; return Value;
} }
public void setValue(String value) { public void setValue(String value) {
Value = value; Value = value;
} }
public Long getUserBusinessID() { public Long getUserBusinessID() {
return userBusinessID; return userBusinessID;
} }
public void setUserBusinessID(Long userBusinessID) { public void setUserBusinessID(Long userBusinessID) {
this.userBusinessID = userBusinessID; this.userBusinessID = userBusinessID;
} }
public String getUserBusinessIDs() { public String getUserBusinessIDs() {
return userBusinessIDs; return userBusinessIDs;
} }
public void setUserBusinessIDs(String userBusinessIDs) { public void setUserBusinessIDs(String userBusinessIDs) {
this.userBusinessIDs = userBusinessIDs; this.userBusinessIDs = userBusinessIDs;
} }
public int getPageSize() { public int getPageSize() {
return pageSize; return pageSize;
} }
public void setPageSize(int pageSize) { public void setPageSize(int pageSize) {
this.pageSize = pageSize; this.pageSize = pageSize;
} }
public int getPageNo() { public int getPageNo() {
return pageNo; return pageNo;
} }
public void setPageNo(int pageNo) { public void setPageNo(int pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
} }
public String getClientIp() { public String getClientIp() {
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) { public void setClientIp(String clientIp) {
this.clientIp = clientIp; this.clientIp = clientIp;
} }
public String getBtnStr() { public String getBtnStr() {
return BtnStr; return BtnStr;
} }
public void setBtnStr(String btnStr) { public void setBtnStr(String btnStr) {
BtnStr = btnStr; BtnStr = btnStr;
} }
} }
...@@ -6,38 +6,35 @@ import java.util.List; ...@@ -6,38 +6,35 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UserBusinessShowModel implements Serializable public class UserBusinessShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
/** /**
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public Map<String, List> getMap() { public Map<String, List> getMap() {
return map; return map;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) { public void setMap(Map<String, List> map) {
this.map = map; this.map = map;
} }
} }
...@@ -3,253 +3,218 @@ package com.jsh.model.vo.basic; ...@@ -3,253 +3,218 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UserModel implements Serializable public class UserModel implements Serializable {
{ private UserShowModel showModel = new UserShowModel();
private UserShowModel showModel = new UserShowModel();
/*+++++用户登录开始+++++++++++*/
/*+++++用户登录开始+++++++++++*/ private String username = "";
private String username = "" ; private String password = "";
private String password = "" ; /*+++++用户登录结束+++++++++++*/
/*+++++用户登录结束+++++++++++*/
/**
/** * ===============以下处理用户管理部分===============
* ===============以下处理用户管理部分=============== */
*/ /**
/** * 用户登录名称
* 用户登录名称 */
*/ private String loginame;
private String loginame;
/**
/** * 职位
* 职位 */
*/ private String position;
private String position;
/**
/** * 部门
* 部门 */
*/ private String department;
private String department;
/**
/** * 电子邮件
* 电子邮件 */
*/ private String email;
private String email;
/**
/** * 电话号码
* 电话号码 */
*/ private String phonenum;
private String phonenum;
/**
/** * 是否管理员 0 ==管理员 1==非管理员
* 是否管理员 0 ==管理员 1==非管理员 */
*/ private Short ismanager = 1;
private Short ismanager = 1;
/**
/** * 用户描述
* 用户描述 */
*/ private String description;
private String description;
/**
/** * 用户ID
* 用户ID */
*/ private Long userID = 0l;
private Long userID = 0l;
/**
/** * 用户IDs 批量操作使用
* 用户IDs 批量操作使用 */
*/ private String userIDs = "";
private String userIDs = "";
/**
/** * 每页显示的个数
* 每页显示的个数 */
*/ private int pageSize = 10;
private int pageSize = 10;
/**
/** * 当前页码
* 当前页码 */
*/ private int pageNo = 1;
private int pageNo = 1;
/**
/** * 用户IP,用户记录操作日志
* 用户IP,用户记录操作日志 */
*/ private String clientIp = "";
private String clientIp = "";
/**
/** * 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称
* 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称 */
*/ private int checkFlag = 0;
private int checkFlag = 0;
private String orgpwd = "";
private String orgpwd = "";
public String getClientIp() {
public String getClientIp() return clientIp;
{ }
return clientIp;
} public void setClientIp(String clientIp) {
this.clientIp = clientIp;
public void setClientIp(String clientIp) }
{
this.clientIp = clientIp; public String getUsername() {
} return username;
}
public String getUsername()
{ public void setUsername(String username) {
return username; this.username = username;
} }
public void setUsername(String username) public String getPassword() {
{ return password;
this.username = username; }
}
public void setPassword(String password) {
public String getPassword() this.password = password;
{ }
return password;
} public UserShowModel getShowModel() {
return showModel;
public void setPassword(String password) }
{
this.password = password; public void setShowModel(UserShowModel showModel) {
} this.showModel = showModel;
}
public UserShowModel getShowModel()
{ public String getLoginame() {
return showModel; return loginame;
} }
public void setShowModel(UserShowModel showModel) public void setLoginame(String loginame) {
{ this.loginame = loginame;
this.showModel = showModel; }
}
public String getPosition() {
public String getLoginame() return position;
{ }
return loginame;
} public void setPosition(String position) {
this.position = position;
public void setLoginame(String loginame) }
{
this.loginame = loginame; public String getDepartment() {
} return department;
}
public String getPosition()
{ public void setDepartment(String department) {
return position; this.department = department;
} }
public void setPosition(String position) public String getEmail() {
{ return email;
this.position = position; }
}
public void setEmail(String email) {
public String getDepartment() this.email = email;
{ }
return department;
} public String getPhonenum() {
return phonenum;
public void setDepartment(String department) }
{
this.department = department; public void setPhonenum(String phonenum) {
} this.phonenum = phonenum;
}
public String getEmail()
{ public Short getIsmanager() {
return email; return ismanager;
} }
public void setEmail(String email) public void setIsmanager(Short ismanager) {
{ this.ismanager = ismanager;
this.email = email; }
}
public String getDescription() {
public String getPhonenum() return description;
{ }
return phonenum;
} public void setDescription(String description) {
this.description = description;
public void setPhonenum(String phonenum) }
{
this.phonenum = phonenum; public Long getUserID() {
} return userID;
}
public Short getIsmanager()
{ public void setUserID(Long userID) {
return ismanager; this.userID = userID;
} }
public void setIsmanager(Short ismanager) public String getUserIDs() {
{ return userIDs;
this.ismanager = ismanager; }
}
public void setUserIDs(String userIDs) {
public String getDescription() this.userIDs = userIDs;
{ }
return description;
} public int getPageSize() {
return pageSize;
public void setDescription(String description) }
{
this.description = description; public void setPageSize(int pageSize) {
} this.pageSize = pageSize;
}
public Long getUserID()
{ public int getPageNo() {
return userID; return pageNo;
} }
public void setUserID(Long userID) public void setPageNo(int pageNo) {
{ this.pageNo = pageNo;
this.userID = userID; }
}
public int getCheckFlag() {
public String getUserIDs() return checkFlag;
{ }
return userIDs;
} public void setCheckFlag(int checkFlag) {
this.checkFlag = checkFlag;
public void setUserIDs(String userIDs) }
{
this.userIDs = userIDs; public String getOrgpwd() {
} return orgpwd;
}
public int getPageSize()
{ public void setOrgpwd(String orgpwd) {
return pageSize; this.orgpwd = orgpwd;
} }
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;
}
} }
...@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic; ...@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class UserShowModel implements Serializable public class UserShowModel implements Serializable {
{ /**
/** * 提示信息
* 提示信息 */
*/ private String msgTip = "";
private String msgTip = "";
public String getMsgTip() public String getMsgTip() {
{ return msgTip;
return msgTip; }
}
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{ this.msgTip = msgTip;
this.msgTip = msgTip; }
}
} }
...@@ -3,25 +3,26 @@ package com.jsh.model.vo.materials; ...@@ -3,25 +3,26 @@ package com.jsh.model.vo.materials;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class AccountHeadModel implements Serializable public class AccountHeadModel implements Serializable {
{
private AccountHeadShowModel showModel = new AccountHeadShowModel(); private AccountHeadShowModel showModel = new AccountHeadShowModel();
/**======开始接受页面参数=================**/ /**
* ======开始接受页面参数=================
**/
private String Type; private String Type;
private Long OrganId; private Long OrganId;
private Long HandsPersonId; private Long HandsPersonId;
private Double ChangeAmount; private Double ChangeAmount;
private Double TotalPrice; private Double TotalPrice;
private Long AccountId; private Long AccountId;
private String BillNo; private String BillNo;
private String BillTime; private String BillTime;
private String Remark; private String Remark;
private String BeginTime; //查询开始时间 private String BeginTime; //查询开始时间
private String EndTime; //查询结束时间 private String EndTime; //查询结束时间
private String MonthTime; //查询月份 private String MonthTime; //查询月份
private String supplierId; //单位Id,用于查询单位的收付款 private String supplierId; //单位Id,用于查询单位的收付款
private String supType; //单位类型,客户、供应商 private String supType; //单位类型,客户、供应商
/** /**
...@@ -49,192 +50,157 @@ public class AccountHeadModel implements Serializable ...@@ -49,192 +50,157 @@ public class AccountHeadModel implements Serializable
*/ */
private String clientIp = ""; private String clientIp = "";
public void setShowModel(AccountHeadShowModel showModel) public AccountHeadShowModel getShowModel() {
{
this.showModel = showModel;
}
public AccountHeadShowModel getShowModel()
{
return showModel; return showModel;
} }
public void setType(String type) public void setShowModel(AccountHeadShowModel showModel) {
{ this.showModel = showModel;
Type = type;
} }
public String getType() public String getType() {
{
return Type; return Type;
} }
public void setOrganId(Long organId) public void setType(String type) {
{ Type = type;
OrganId = organId;
} }
public Long getOrganId() public Long getOrganId() {
{
return OrganId; return OrganId;
} }
public void setHandsPersonId(Long handsPersonId) public void setOrganId(Long organId) {
{ OrganId = organId;
HandsPersonId = handsPersonId;
} }
public Long getHandsPersonId() public Long getHandsPersonId() {
{
return HandsPersonId; return HandsPersonId;
} }
public void setChangeAmount(Double changeAmount) public void setHandsPersonId(Long handsPersonId) {
{ HandsPersonId = handsPersonId;
ChangeAmount = changeAmount;
} }
public Double getChangeAmount() public Double getChangeAmount() {
{
return ChangeAmount; return ChangeAmount;
} }
public void setTotalPrice(Double totalPrice) { public void setChangeAmount(Double changeAmount) {
TotalPrice = totalPrice; ChangeAmount = changeAmount;
} }
public Double getTotalPrice() { public Double getTotalPrice() {
return TotalPrice; return TotalPrice;
} }
public void setAccountId(Long accountId) public void setTotalPrice(Double totalPrice) {
{ TotalPrice = totalPrice;
AccountId = accountId;
} }
public Long getAccountId() public Long getAccountId() {
{
return AccountId; return AccountId;
} }
public void setBillNo(String billNo) public void setAccountId(Long accountId) {
{ AccountId = accountId;
BillNo = billNo;
} }
public String getBillNo() public String getBillNo() {
{
return BillNo; return BillNo;
} }
public void setBillTime(String billTime) public void setBillNo(String billNo) {
{ BillNo = billNo;
BillTime = billTime;
} }
public String getBillTime() public String getBillTime() {
{
return BillTime; return BillTime;
} }
public void setRemark(String remark) public void setBillTime(String billTime) {
{ BillTime = billTime;
Remark = remark;
} }
public String getRemark() public String getRemark() {
{
return Remark; return Remark;
} }
public void setBeginTime(String beginTime) public void setRemark(String remark) {
{ Remark = remark;
BeginTime = beginTime;
} }
public String getBeginTime() public String getBeginTime() {
{
return BeginTime; return BeginTime;
} }
public void setEndTime(String endTime) public void setBeginTime(String beginTime) {
{ BeginTime = beginTime;
EndTime = endTime;
} }
public String getEndTime() public String getEndTime() {
{
return EndTime; return EndTime;
} }
public void setMonthTime(String monthTime) public void setEndTime(String endTime) {
{ EndTime = endTime;
MonthTime = monthTime;
} }
public String getMonthTime() public String getMonthTime() {
{
return MonthTime; return MonthTime;
} }
public void setAccountHeadID(Long accountHeadID) public void setMonthTime(String monthTime) {
{ MonthTime = monthTime;
this.accountHeadID = accountHeadID;
} }
public Long getAccountHeadID() public Long getAccountHeadID() {
{
return accountHeadID; return accountHeadID;
} }
public void setAccountHeadIDs(String accountHeadIDs) public void setAccountHeadID(Long accountHeadID) {
{ this.accountHeadID = accountHeadID;
this.accountHeadIDs = accountHeadIDs;
} }
public String getAccountHeadIDs() public String getAccountHeadIDs() {
{
return accountHeadIDs; return accountHeadIDs;
} }
public void setPageSize(int pageSize) public void setAccountHeadIDs(String accountHeadIDs) {
{ this.accountHeadIDs = accountHeadIDs;
this.pageSize = pageSize;
} }
public int getPageSize() public int getPageSize() {
{
return pageSize; return pageSize;
} }
public void setPageNo(int pageNo) public void setPageSize(int pageSize) {
{ this.pageSize = pageSize;
this.pageNo = pageNo;
} }
public int getPageNo() public int getPageNo() {
{
return pageNo; return pageNo;
} }
public void setPageNo(int pageNo) {
public void setClientIp(String clientIp) this.pageNo = pageNo;
{
this.clientIp = clientIp;
} }
public String getClientIp() public String getClientIp() {
{
return clientIp; return clientIp;
} }
public String getSupplierId() { public void setClientIp(String clientIp) {
return supplierId; this.clientIp = clientIp;
} }
public void setSupplierId(String supplierId) { public String getSupplierId() {
this.supplierId = supplierId; return supplierId;
} }
public void setSupplierId(String supplierId) {
this.supplierId = supplierId;
}
public String getSupType() { public String getSupType() {
return supType; return supType;
......
...@@ -6,8 +6,7 @@ import java.util.List; ...@@ -6,8 +6,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class AccountHeadShowModel implements Serializable public class AccountHeadShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
...@@ -17,15 +16,13 @@ public class AccountHeadShowModel implements Serializable ...@@ -17,15 +16,13 @@ public class AccountHeadShowModel implements Serializable
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
......
...@@ -4,11 +4,12 @@ import java.io.InputStream; ...@@ -4,11 +4,12 @@ import java.io.InputStream;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class AccountItemModel implements Serializable public class AccountItemModel implements Serializable {
{
private AccountItemShowModel showModel = new AccountItemShowModel(); private AccountItemShowModel showModel = new AccountItemShowModel();
/**======开始接受页面参数=================**/ /**
* ======开始接受页面参数=================
**/
private Long HeaderId; private Long HeaderId;
private Long AccountId; private Long AccountId;
private Long InOutItemId; private Long InOutItemId;
...@@ -58,106 +59,86 @@ public class AccountItemModel implements Serializable ...@@ -58,106 +59,86 @@ public class AccountItemModel implements Serializable
*/ */
private InputStream excelStream; private InputStream excelStream;
public void setShowModel(AccountItemShowModel showModel) public AccountItemShowModel getShowModel() {
{
this.showModel = showModel;
}
public AccountItemShowModel getShowModel()
{
return showModel; return showModel;
} }
public void setHeaderId(Long headerId) public void setShowModel(AccountItemShowModel showModel) {
{ this.showModel = showModel;
HeaderId = headerId;
} }
public Long getHeaderId() public Long getHeaderId() {
{
return HeaderId; return HeaderId;
} }
public void setAccountId(Long accountId) public void setHeaderId(Long headerId) {
{ HeaderId = headerId;
AccountId = accountId;
} }
public Long getAccountId() public Long getAccountId() {
{
return AccountId; return AccountId;
} }
public void setInOutItemId(Long inOutItemId) public void setAccountId(Long accountId) {
{ AccountId = accountId;
InOutItemId = inOutItemId;
} }
public Long getInOutItemId() public Long getInOutItemId() {
{
return InOutItemId; return InOutItemId;
} }
public void setEachAmount(Double eachAmount) public void setInOutItemId(Long inOutItemId) {
{ InOutItemId = inOutItemId;
EachAmount = eachAmount;
} }
public Double getEachAmount() public Double getEachAmount() {
{
return EachAmount; return EachAmount;
} }
public void setRemark(String remark) public void setEachAmount(Double eachAmount) {
{ EachAmount = eachAmount;
Remark = remark;
} }
public String getRemark() public String getRemark() {
{
return Remark; return Remark;
} }
public void setInserted(String inserted) public void setRemark(String remark) {
{ Remark = remark;
Inserted = inserted;
} }
public String getInserted() public String getInserted() {
{
return Inserted; return Inserted;
} }
public void setDeleted(String deleted) public void setInserted(String inserted) {
{ Inserted = inserted;
Deleted = deleted;
} }
public String getDeleted() public String getDeleted() {
{
return Deleted; return Deleted;
} }
public void setUpdated(String updated) public void setDeleted(String deleted) {
{ Deleted = deleted;
Updated = updated;
} }
public String getUpdated() public String getUpdated() {
{
return Updated; return Updated;
} }
public void setHeadIds(String headIds) public void setUpdated(String updated) {
{ Updated = updated;
HeadIds = headIds;
} }
public String getHeadIds() public String getHeadIds() {
{
return HeadIds; return HeadIds;
} }
public void setHeadIds(String headIds) {
HeadIds = headIds;
}
public String getListType() { public String getListType() {
return ListType; return ListType;
} }
...@@ -166,95 +147,75 @@ public class AccountItemModel implements Serializable ...@@ -166,95 +147,75 @@ public class AccountItemModel implements Serializable
ListType = listType; ListType = listType;
} }
public void setMonthTime(String monthTime) public String getMonthTime() {
{
MonthTime = monthTime;
}
public String getMonthTime()
{
return MonthTime; return MonthTime;
} }
public void setBrowserType(String browserType) public void setMonthTime(String monthTime) {
{ MonthTime = monthTime;
this.browserType = browserType;
} }
public String getBrowserType() public String getBrowserType() {
{
return browserType; return browserType;
} }
public void setFileName(String fileName) public void setBrowserType(String browserType) {
{ this.browserType = browserType;
this.fileName = fileName;
} }
public String getFileName() public String getFileName() {
{
return fileName; return fileName;
} }
public void setAccountItemID(Long accountItemID) public void setFileName(String fileName) {
{ this.fileName = fileName;
this.accountItemID = accountItemID;
} }
public Long getAccountItemID() public Long getAccountItemID() {
{
return accountItemID; return accountItemID;
} }
public void setAccountItemIDs(String accountItemIDs) public void setAccountItemID(Long accountItemID) {
{ this.accountItemID = accountItemID;
this.accountItemIDs = accountItemIDs;
} }
public String getAccountItemIDs() public String getAccountItemIDs() {
{
return accountItemIDs; return accountItemIDs;
} }
public void setPageSize(int pageSize) public void setAccountItemIDs(String accountItemIDs) {
{ this.accountItemIDs = accountItemIDs;
this.pageSize = pageSize;
} }
public int getPageSize() public int getPageSize() {
{
return pageSize; return pageSize;
} }
public void setPageNo(int pageNo) public void setPageSize(int pageSize) {
{ this.pageSize = pageSize;
this.pageNo = pageNo;
} }
public int getPageNo() public int getPageNo() {
{
return pageNo; return pageNo;
} }
public void setClientIp(String clientIp) public void setPageNo(int pageNo) {
{ this.pageNo = pageNo;
this.clientIp = clientIp;
} }
public String getClientIp() public String getClientIp() {
{
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) {
public void setExcelStream(InputStream excelStream) this.clientIp = clientIp;
{
this.excelStream = excelStream;
} }
public InputStream getExcelStream() public InputStream getExcelStream() {
{
return excelStream; return excelStream;
} }
public void setExcelStream(InputStream excelStream) {
this.excelStream = excelStream;
}
} }
...@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials; ...@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class AccountItemShowModel implements Serializable public class AccountItemShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
} }
...@@ -6,37 +6,34 @@ import java.util.List; ...@@ -6,37 +6,34 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class DepotHeadShowModel implements Serializable public class DepotHeadShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
/** /**
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public Map<String, List> getMap() { public Map<String, List> getMap() {
return map; return map;
} }
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
@SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) {
this.map = map;
}
} }
...@@ -4,381 +4,382 @@ import java.io.InputStream; ...@@ -4,381 +4,382 @@ import java.io.InputStream;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class DepotItemModel implements Serializable public class DepotItemModel implements Serializable {
{
private DepotItemShowModel showModel = new DepotItemShowModel(); private DepotItemShowModel showModel = new DepotItemShowModel();
/**======开始接受页面参数=================**/ /**
private Long HeaderId; * ======开始接受页面参数=================
private Long MaterialId; **/
private String MUnit; //计量单位 private Long HeaderId;
private Double OperNumber; private Long MaterialId;
private Double BasicNumber; private String MUnit; //计量单位
private Double UnitPrice; private Double OperNumber;
private Double TaxUnitPrice; //含税单价 private Double BasicNumber;
private Double AllPrice; private Double UnitPrice;
private String Remark = ""; private Double TaxUnitPrice; //含税单价
private String Img = ""; private Double AllPrice;
private String Remark = "";
private Long DepotId; private String Img = "";
private Long AnotherDepotId;
private Double TaxRate; private Long DepotId;
private Double TaxMoney; private Long AnotherDepotId;
private Double TaxLastMoney; private Double TaxRate;
private String OtherField1; private Double TaxMoney;
private String OtherField2; private Double TaxLastMoney;
private String OtherField3; private String OtherField1;
private String OtherField4; private String OtherField2;
private String OtherField5; private String OtherField3;
private String MType; private String OtherField4;
private String OtherField5;
private String Inserted = ""; //json插入记录 private String MType;
private String Deleted = ""; //json删除记录
private String Updated = ""; //json修改记录 private String Inserted = ""; //json插入记录
private String Deleted = ""; //json删除记录
private String HeadIds = ""; //表头集合列表 private String Updated = ""; //json修改记录
private String MaterialIds = ""; //材料列表
private String MonthTime = ""; //月份 private String HeadIds = ""; //表头集合列表
private Integer ProjectId = null; private String MaterialIds = ""; //材料列表
private String browserType = ""; private String MonthTime = ""; //月份
/** private Integer ProjectId = null;
* 文件名称 private String browserType = "";
*/ /**
private String fileName = ""; * 文件名称
*/
private String fileName = "";
/** /**
* 分类ID * 分类ID
*/ */
private Long depotItemID = 0l; private Long depotItemID = 0l;
/** /**
* 分类IDs 批量操作使用 * 分类IDs 批量操作使用
*/ */
private String depotItemIDs = ""; private String depotItemIDs = "";
/** /**
* 每页显示的个数 * 每页显示的个数
*/ */
private int pageSize = 800; private int pageSize = 800;
/** /**
* 当前页码 * 当前页码
*/ */
private int pageNo = 1; private int pageNo = 1;
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
/** /**
* 输入流,导出excel文件 * 输入流,导出excel文件
*/ */
private InputStream excelStream; private InputStream excelStream;
private String mpList = ""; //商品属性 private String mpList = ""; //商品属性
public DepotItemShowModel getShowModel() { public DepotItemShowModel getShowModel() {
return showModel; return showModel;
} }
public void setShowModel(DepotItemShowModel showModel) { public void setShowModel(DepotItemShowModel showModel) {
this.showModel = showModel; this.showModel = showModel;
} }
public Long getHeaderId() { public Long getHeaderId() {
return HeaderId; return HeaderId;
} }
public void setHeaderId(Long headerId) { public void setHeaderId(Long headerId) {
HeaderId = headerId; HeaderId = headerId;
} }
public Long getMaterialId() { public Long getMaterialId() {
return MaterialId; return MaterialId;
} }
public void setMaterialId(Long materialId) { public void setMaterialId(Long materialId) {
MaterialId = materialId; MaterialId = materialId;
} }
public String getMUnit() { public String getMUnit() {
return MUnit; return MUnit;
} }
public void setMUnit(String MUnit) { public void setMUnit(String MUnit) {
this.MUnit = MUnit; this.MUnit = MUnit;
} }
public Double getTaxUnitPrice() { public Double getTaxUnitPrice() {
return TaxUnitPrice; return TaxUnitPrice;
} }
public void setTaxUnitPrice(Double taxUnitPrice) { public void setTaxUnitPrice(Double taxUnitPrice) {
TaxUnitPrice = taxUnitPrice; TaxUnitPrice = taxUnitPrice;
} }
public Double getOperNumber() { public Double getOperNumber() {
return OperNumber; return OperNumber;
} }
public void setOperNumber(Double operNumber) { public void setOperNumber(Double operNumber) {
OperNumber = operNumber; OperNumber = operNumber;
} }
public Double getBasicNumber() { public Double getBasicNumber() {
return BasicNumber; return BasicNumber;
} }
public void setBasicNumber(Double basicNumber) { public void setBasicNumber(Double basicNumber) {
BasicNumber = basicNumber; BasicNumber = basicNumber;
} }
public Double getUnitPrice() { public Double getUnitPrice() {
return UnitPrice; return UnitPrice;
} }
public void setUnitPrice(Double unitPrice) { public void setUnitPrice(Double unitPrice) {
UnitPrice = unitPrice; UnitPrice = unitPrice;
} }
public Double getAllPrice() { public Double getAllPrice() {
return AllPrice; return AllPrice;
} }
public void setAllPrice(Double allPrice) { public void setAllPrice(Double allPrice) {
AllPrice = allPrice; AllPrice = allPrice;
} }
public String getRemark() { public String getRemark() {
return Remark; return Remark;
} }
public void setRemark(String remark) { public void setRemark(String remark) {
Remark = remark; Remark = remark;
} }
public String getImg() { public String getImg() {
return Img; return Img;
} }
public void setImg(String img) { public void setImg(String img) {
Img = img; Img = img;
} }
public Long getDepotItemID() { public Long getDepotItemID() {
return depotItemID; return depotItemID;
} }
public void setDepotItemID(Long depotItemID) { public void setDepotItemID(Long depotItemID) {
this.depotItemID = depotItemID; this.depotItemID = depotItemID;
} }
public String getDepotItemIDs() { public String getDepotItemIDs() {
return depotItemIDs; return depotItemIDs;
} }
public void setDepotItemIDs(String depotItemIDs) { public void setDepotItemIDs(String depotItemIDs) {
this.depotItemIDs = depotItemIDs; this.depotItemIDs = depotItemIDs;
} }
public int getPageSize() { public int getPageSize() {
return pageSize; return pageSize;
} }
public void setPageSize(int pageSize) { public void setPageSize(int pageSize) {
this.pageSize = pageSize; this.pageSize = pageSize;
} }
public int getPageNo() { public int getPageNo() {
return pageNo; return pageNo;
} }
public void setPageNo(int pageNo) { public void setPageNo(int pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
} }
public String getClientIp() { public String getClientIp() {
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) { public void setClientIp(String clientIp) {
this.clientIp = clientIp; this.clientIp = clientIp;
} }
public String getInserted() { public String getInserted() {
return Inserted; return Inserted;
} }
public void setInserted(String inserted) { public void setInserted(String inserted) {
Inserted = inserted; Inserted = inserted;
} }
public String getDeleted() { public String getDeleted() {
return Deleted; return Deleted;
} }
public void setDeleted(String deleted) { public void setDeleted(String deleted) {
Deleted = deleted; Deleted = deleted;
} }
public String getUpdated() { public String getUpdated() {
return Updated; return Updated;
} }
public void setUpdated(String updated) { public void setUpdated(String updated) {
Updated = updated; Updated = updated;
} }
public String getHeadIds() { public String getHeadIds() {
return HeadIds; return HeadIds;
} }
public void setHeadIds(String headIds) { public void setHeadIds(String headIds) {
HeadIds = headIds; HeadIds = headIds;
} }
public String getMonthTime() { public String getMonthTime() {
return MonthTime; return MonthTime;
} }
public void setMonthTime(String monthTime) { public void setMonthTime(String monthTime) {
MonthTime = monthTime; MonthTime = monthTime;
} }
public Integer getProjectId() { public Integer getProjectId() {
return ProjectId; return ProjectId;
} }
public void setProjectId(Integer projectId) { public void setProjectId(Integer projectId) {
ProjectId = projectId; ProjectId = projectId;
} }
public String getMaterialIds() { public String getMaterialIds() {
return MaterialIds; return MaterialIds;
} }
public void setMaterialIds(String materialIds) { public void setMaterialIds(String materialIds) {
MaterialIds = materialIds; MaterialIds = materialIds;
} }
public String getBrowserType() { public String getBrowserType() {
return browserType; return browserType;
} }
public void setBrowserType(String browserType) { public void setBrowserType(String browserType) {
this.browserType = browserType; this.browserType = browserType;
} }
public String getFileName() { public String getFileName() {
return fileName; return fileName;
} }
public void setFileName(String fileName) { public void setFileName(String fileName) {
this.fileName = fileName; this.fileName = fileName;
} }
public InputStream getExcelStream() { public InputStream getExcelStream() {
return excelStream; return excelStream;
} }
public void setExcelStream(InputStream excelStream) { public void setExcelStream(InputStream excelStream) {
this.excelStream = excelStream; this.excelStream = excelStream;
} }
public Long getDepotId() { public Long getDepotId() {
return DepotId; return DepotId;
} }
public void setDepotId(Long depotId) { public void setDepotId(Long depotId) {
DepotId = depotId; DepotId = depotId;
} }
public Long getAnotherDepotId() { public Long getAnotherDepotId() {
return AnotherDepotId; return AnotherDepotId;
} }
public void setAnotherDepotId(Long anotherDepotId) { public void setAnotherDepotId(Long anotherDepotId) {
AnotherDepotId = anotherDepotId; AnotherDepotId = anotherDepotId;
} }
public Double getTaxRate() { public Double getTaxRate() {
return TaxRate; return TaxRate;
} }
public void setTaxRate(Double taxRate) { public void setTaxRate(Double taxRate) {
TaxRate = taxRate; TaxRate = taxRate;
} }
public Double getTaxMoney() { public Double getTaxMoney() {
return TaxMoney; return TaxMoney;
} }
public void setTaxMoney(Double taxMoney) { public void setTaxMoney(Double taxMoney) {
TaxMoney = taxMoney; TaxMoney = taxMoney;
} }
public Double getTaxLastMoney() { public Double getTaxLastMoney() {
return TaxLastMoney; return TaxLastMoney;
} }
public void setTaxLastMoney(Double taxLastMoney) { public void setTaxLastMoney(Double taxLastMoney) {
TaxLastMoney = taxLastMoney; TaxLastMoney = taxLastMoney;
} }
public String getOtherField1() { public String getOtherField1() {
return OtherField1; return OtherField1;
} }
public void setOtherField1(String otherField1) { public void setOtherField1(String otherField1) {
OtherField1 = otherField1; OtherField1 = otherField1;
} }
public String getOtherField2() { public String getOtherField2() {
return OtherField2; return OtherField2;
} }
public void setOtherField2(String otherField2) { public void setOtherField2(String otherField2) {
OtherField2 = otherField2; OtherField2 = otherField2;
} }
public String getOtherField3() { public String getOtherField3() {
return OtherField3; return OtherField3;
} }
public void setOtherField3(String otherField3) { public void setOtherField3(String otherField3) {
OtherField3 = otherField3; OtherField3 = otherField3;
} }
public String getOtherField4() { public String getOtherField4() {
return OtherField4; return OtherField4;
} }
public void setOtherField4(String otherField4) { public void setOtherField4(String otherField4) {
OtherField4 = otherField4; OtherField4 = otherField4;
} }
public String getOtherField5() { public String getOtherField5() {
return OtherField5; return OtherField5;
} }
public void setOtherField5(String otherField5) { public void setOtherField5(String otherField5) {
OtherField5 = otherField5; OtherField5 = otherField5;
} }
public String getMType() { public String getMType() {
return MType; return MType;
} }
public void setMType(String MType) { public void setMType(String MType) {
this.MType = MType; this.MType = MType;
} }
public String getMpList() { public String getMpList() {
return mpList; return mpList;
} }
public void setMpList(String mpList) { public void setMpList(String mpList) {
this.mpList = mpList; this.mpList = mpList;
} }
} }
...@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials; ...@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class DepotItemShowModel implements Serializable public class DepotItemShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
} }
...@@ -3,8 +3,7 @@ package com.jsh.model.vo.materials; ...@@ -3,8 +3,7 @@ package com.jsh.model.vo.materials;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class MaterialCategoryModel implements Serializable public class MaterialCategoryModel implements Serializable {
{
private MaterialCategoryShowModel showModel = new MaterialCategoryShowModel(); private MaterialCategoryShowModel showModel = new MaterialCategoryShowModel();
/**======开始接受页面参数=================**/ /**======开始接受页面参数=================**/
...@@ -12,112 +11,112 @@ public class MaterialCategoryModel implements Serializable ...@@ -12,112 +11,112 @@ public class MaterialCategoryModel implements Serializable
* 名称 * 名称
*/ */
private String Name = ""; private String Name = "";
/** /**
* 等级 * 等级
*/ */
private Short CategoryLevel; private Short CategoryLevel;
/** /**
* ParentId * ParentId
*/ */
private Long ParentId; private Long ParentId;
/** /**
* 分类ID * 分类ID
*/ */
private Long materialCategoryID = 0l; private Long materialCategoryID = 0l;
/** /**
* 分类IDs 批量操作使用 * 分类IDs 批量操作使用
*/ */
private String materialCategoryIDs = ""; private String materialCategoryIDs = "";
/** /**
* 每页显示的个数 * 每页显示的个数
*/ */
private int pageSize = 10; private int pageSize = 10;
/** /**
* 当前页码 * 当前页码
*/ */
private int pageNo = 1; private int pageNo = 1;
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
public MaterialCategoryShowModel getShowModel() { public MaterialCategoryShowModel getShowModel() {
return showModel; return showModel;
} }
public void setShowModel(MaterialCategoryShowModel showModel) {
this.showModel = showModel;
}
public void setShowModel(MaterialCategoryShowModel showModel) { public String getName() {
this.showModel = showModel; return Name;
} }
public String getName() { public void setName(String name) {
return Name; Name = name;
} }
public void setName(String name) { public Short getCategoryLevel() {
Name = name; return CategoryLevel;
} }
public Short getCategoryLevel() { public void setCategoryLevel(Short categoryLevel) {
return CategoryLevel; CategoryLevel = categoryLevel;
} }
public void setCategoryLevel(Short categoryLevel) { public Long getParentId() {
CategoryLevel = categoryLevel; return ParentId;
} }
public Long getParentId() { public void setParentId(Long parentId) {
return ParentId; ParentId = parentId;
} }
public void setParentId(Long parentId) { public Long getMaterialCategoryID() {
ParentId = parentId; return materialCategoryID;
} }
public Long getMaterialCategoryID() { public void setMaterialCategoryID(Long materialCategoryID) {
return materialCategoryID; this.materialCategoryID = materialCategoryID;
} }
public void setMaterialCategoryID(Long materialCategoryID) { public String getMaterialCategoryIDs() {
this.materialCategoryID = materialCategoryID; return materialCategoryIDs;
} }
public String getMaterialCategoryIDs() { public void setMaterialCategoryIDs(String materialCategoryIDs) {
return materialCategoryIDs; this.materialCategoryIDs = materialCategoryIDs;
} }
public void setMaterialCategoryIDs(String materialCategoryIDs) { public int getPageSize() {
this.materialCategoryIDs = materialCategoryIDs; return pageSize;
} }
public int getPageSize() { public void setPageSize(int pageSize) {
return pageSize; this.pageSize = pageSize;
} }
public void setPageSize(int pageSize) { public int getPageNo() {
this.pageSize = pageSize; return pageNo;
} }
public int getPageNo() { public void setPageNo(int pageNo) {
return pageNo; this.pageNo = pageNo;
} }
public void setPageNo(int pageNo) { public String getClientIp() {
this.pageNo = pageNo; return clientIp;
} }
public String getClientIp() { public void setClientIp(String clientIp) {
return clientIp; this.clientIp = clientIp;
} }
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
} }
...@@ -6,38 +6,35 @@ import java.util.List; ...@@ -6,38 +6,35 @@ import java.util.List;
import java.util.Map; import java.util.Map;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class MaterialCategoryShowModel implements Serializable public class MaterialCategoryShowModel implements Serializable {
{
/** /**
* 提示信息 * 提示信息
*/ */
private String msgTip = ""; private String msgTip = "";
/** /**
* 系统数据 * 系统数据
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
private Map<String,List> map = new HashMap<String,List>(); private Map<String, List> map = new HashMap<String, List>();
public String getMsgTip() public String getMsgTip() {
{
return msgTip; return msgTip;
} }
public void setMsgTip(String msgTip) public void setMsgTip(String msgTip) {
{
this.msgTip = msgTip; this.msgTip = msgTip;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public Map<String, List> getMap() { public Map<String, List> getMap() {
return map; return map;
} }
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")
public void setMap(Map<String, List> map) { public void setMap(Map<String, List> map) {
this.map = map; this.map = map;
} }
} }
...@@ -5,8 +5,7 @@ import java.io.InputStream; ...@@ -5,8 +5,7 @@ import java.io.InputStream;
import java.io.Serializable; import java.io.Serializable;
@SuppressWarnings("serial") @SuppressWarnings("serial")
public class MaterialModel implements Serializable public class MaterialModel implements Serializable {
{
private MaterialShowModel showModel = new MaterialShowModel(); private MaterialShowModel showModel = new MaterialShowModel();
/**======开始接受页面参数=================**/ /**======开始接受页面参数=================**/
...@@ -15,392 +14,384 @@ public class MaterialModel implements Serializable ...@@ -15,392 +14,384 @@ public class MaterialModel implements Serializable
*/ */
private String Name = ""; private String Name = "";
private String Mfrs = ""; //制造商 private String Mfrs = ""; //制造商
private Double Packing; //包装(KG/包) private Double Packing; //包装(KG/包)
private Double SafetyStock; //安全存量(KG) private Double SafetyStock; //安全存量(KG)
/** /**
* 型号 * 型号
*/ */
private String Model = ""; private String Model = "";
/** /**
* 规格 * 规格
*/ */
private String Standard = ""; private String Standard = "";
/** /**
* 颜色 * 颜色
*/ */
private String Color = ""; private String Color = "";
/** /**
* 单位 * 单位
*/ */
private String Unit = ""; private String Unit = "";
/** /**
* 零售价 * 零售价
*/ */
private Double RetailPrice; private Double RetailPrice;
/** /**
* 最低售价 * 最低售价
*/ */
private Double LowPrice; private Double LowPrice;
/** /**
* 预设售价一 * 预设售价一
*/ */
private Double PresetPriceOne; private Double PresetPriceOne;
/** /**
* 预设售价二 * 预设售价二
*/ */
private Double PresetPriceTwo; private Double PresetPriceTwo;
/** /**
* 备注 * 备注
*/ */
private String Remark = ""; private String Remark = "";
private Long UnitId; private Long UnitId;
private String FirstOutUnit; private String FirstOutUnit;
private String FirstInUnit; private String FirstInUnit;
private String PriceStrategy; private String PriceStrategy;
/** /**
* 导入excel文件 * 导入excel文件
*/ */
private File materialFile; private File materialFile;
private Boolean Enabled = true; //是否启用 private Boolean Enabled = true; //是否启用
private String OtherField1; private String OtherField1;
private String OtherField2; private String OtherField2;
private String OtherField3;
private String OtherField3;
/** /**
* CategoryId * CategoryId
*/ */
private Long CategoryId; private Long CategoryId;
/** /**
* CategoryIds 用于in子查询 * CategoryIds 用于in子查询
*/ */
private String CategoryIds = "1"; private String CategoryIds = "1";
/** /**
* 分类ID * 分类ID
*/ */
private Long materialID = 0l; private Long materialID = 0l;
/** /**
* 分类IDs 批量操作使用 * 分类IDs 批量操作使用
*/ */
private String materialIDs = ""; private String materialIDs = "";
/** /**
* 每页显示的个数 * 每页显示的个数
*/ */
private int pageSize = 10; private int pageSize = 10;
/** /**
* 当前页码 * 当前页码
*/ */
private int pageNo = 1; private int pageNo = 1;
/** /**
* 用户IP,用户记录操作日志 * 用户IP,用户记录操作日志
*/ */
private String clientIp = ""; private String clientIp = "";
private String browserType = ""; //浏览器类型 private String browserType = ""; //浏览器类型
private String fileName = ""; //文件名称 private String fileName = ""; //文件名称
private InputStream excelStream; //输入流,导出excel文件 private InputStream excelStream; //输入流,导出excel文件
private String mpList = ""; //商品属性
public MaterialShowModel getShowModel() { private String mpList = ""; //商品属性
return showModel;
}
public void setShowModel(MaterialShowModel showModel) { public MaterialShowModel getShowModel() {
this.showModel = showModel; return showModel;
} }
public String getName() { public void setShowModel(MaterialShowModel showModel) {
return Name; this.showModel = showModel;
} }
public void setName(String name) { public String getName() {
Name = name; return Name;
} }
public String getMfrs() { public void setName(String name) {
return Mfrs; Name = name;
} }
public void setMfrs(String mfrs) { public String getMfrs() {
Mfrs = mfrs; return Mfrs;
} }
public Double getPacking() { public void setMfrs(String mfrs) {
return Packing; Mfrs = mfrs;
} }
public void setPacking(Double packing) { public Double getPacking() {
Packing = packing; return Packing;
} }
public Double getSafetyStock() { public void setPacking(Double packing) {
return SafetyStock; Packing = packing;
} }
public void setSafetyStock(Double safetyStock) { public Double getSafetyStock() {
SafetyStock = safetyStock; return SafetyStock;
} }
public String getModel() { public void setSafetyStock(Double safetyStock) {
return Model; SafetyStock = safetyStock;
} }
public void setModel(String model) { public String getModel() {
Model = model; return Model;
} }
public String getStandard() { public void setModel(String model) {
return Standard; Model = model;
} }
public void setStandard(String standard) { public String getStandard() {
Standard = standard; return Standard;
} }
public String getColor() { public void setStandard(String standard) {
return Color; Standard = standard;
} }
public void setColor(String color) { public String getColor() {
Color = color; return Color;
} }
public String getUnit() { public void setColor(String color) {
return Unit; Color = color;
} }
public void setUnit(String unit) { public String getUnit() {
Unit = unit; return Unit;
} }
public void setRetailPrice(Double retailPrice) public void setUnit(String unit) {
{ Unit = unit;
RetailPrice = retailPrice;
} }
public Double getRetailPrice() public Double getRetailPrice() {
{
return RetailPrice; return RetailPrice;
} }
public void setLowPrice(Double lowPrice) public void setRetailPrice(Double retailPrice) {
{ RetailPrice = retailPrice;
LowPrice = lowPrice;
} }
public Double getLowPrice() public Double getLowPrice() {
{
return LowPrice; return LowPrice;
} }
public void setPresetPriceOne(Double presetPriceOne) public void setLowPrice(Double lowPrice) {
{ LowPrice = lowPrice;
PresetPriceOne = presetPriceOne;
} }
public Double getPresetPriceOne() public Double getPresetPriceOne() {
{
return PresetPriceOne; return PresetPriceOne;
} }
public void setPresetPriceTwo(Double presetPriceTwo) public void setPresetPriceOne(Double presetPriceOne) {
{ PresetPriceOne = presetPriceOne;
PresetPriceTwo = presetPriceTwo;
} }
public Double getPresetPriceTwo() public Double getPresetPriceTwo() {
{
return PresetPriceTwo; return PresetPriceTwo;
} }
public String getRemark() { public void setPresetPriceTwo(Double presetPriceTwo) {
return Remark; PresetPriceTwo = presetPriceTwo;
} }
public void setRemark(String remark) { public String getRemark() {
Remark = remark; return Remark;
} }
public Long getCategoryId() { public void setRemark(String remark) {
return CategoryId; Remark = remark;
} }
public void setCategoryId(Long categoryId) { public Long getCategoryId() {
CategoryId = categoryId; return CategoryId;
} }
public Long getMaterialID() { public void setCategoryId(Long categoryId) {
return materialID; CategoryId = categoryId;
} }
public void setMaterialID(Long materialID) { public Long getMaterialID() {
this.materialID = materialID; return materialID;
} }
public String getMaterialIDs() { public void setMaterialID(Long materialID) {
return materialIDs; this.materialID = materialID;
} }
public void setMaterialIDs(String materialIDs) { public String getMaterialIDs() {
this.materialIDs = materialIDs; return materialIDs;
} }
public int getPageSize() { public void setMaterialIDs(String materialIDs) {
return pageSize; this.materialIDs = materialIDs;
} }
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) { public void setPageSize(int pageSize) {
this.pageSize = pageSize; this.pageSize = pageSize;
} }
public int getPageNo() { public int getPageNo() {
return pageNo; return pageNo;
} }
public void setPageNo(int pageNo) { public void setPageNo(int pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
} }
public String getClientIp() { public String getClientIp() {
return clientIp; return clientIp;
} }
public void setClientIp(String clientIp) { public void setClientIp(String clientIp) {
this.clientIp = clientIp; this.clientIp = clientIp;
} }
public String getCategoryIds() { public String getCategoryIds() {
return CategoryIds; return CategoryIds;
} }
public void setCategoryIds(String categoryIds) { public void setCategoryIds(String categoryIds) {
CategoryIds = categoryIds; CategoryIds = categoryIds;
} }
public Long getUnitId() { public Long getUnitId() {
return UnitId; return UnitId;
} }
public void setUnitId(Long unitId) { public void setUnitId(Long unitId) {
UnitId = unitId; UnitId = unitId;
} }
public String getFirstOutUnit() { public String getFirstOutUnit() {
return FirstOutUnit; return FirstOutUnit;
} }
public void setFirstOutUnit(String firstOutUnit) { public void setFirstOutUnit(String firstOutUnit) {
FirstOutUnit = firstOutUnit; FirstOutUnit = firstOutUnit;
} }
public String getFirstInUnit() { public String getFirstInUnit() {
return FirstInUnit; return FirstInUnit;
} }
public void setFirstInUnit(String firstInUnit) { public void setFirstInUnit(String firstInUnit) {
FirstInUnit = firstInUnit; FirstInUnit = firstInUnit;
} }
public String getPriceStrategy() { public String getPriceStrategy() {
return PriceStrategy; return PriceStrategy;
} }
public void setPriceStrategy(String priceStrategy) { public void setPriceStrategy(String priceStrategy) {
PriceStrategy = priceStrategy; PriceStrategy = priceStrategy;
} }
public Boolean getEnabled() { public Boolean getEnabled() {
return Enabled; return Enabled;
} }
public void setEnabled(Boolean enabled) { public void setEnabled(Boolean enabled) {
Enabled = enabled; Enabled = enabled;
} }
public String getOtherField1() { public String getOtherField1() {
return OtherField1; return OtherField1;
} }
public void setOtherField1(String otherField1) { public void setOtherField1(String otherField1) {
OtherField1 = otherField1; OtherField1 = otherField1;
} }
public String getOtherField2() { public String getOtherField2() {
return OtherField2; return OtherField2;
} }
public void setOtherField2(String otherField2) { public void setOtherField2(String otherField2) {
OtherField2 = otherField2; OtherField2 = otherField2;
} }
public String getOtherField3() { public String getOtherField3() {
return OtherField3; return OtherField3;
} }
public void setOtherField3(String otherField3) { public void setOtherField3(String otherField3) {
OtherField3 = otherField3; OtherField3 = otherField3;
} }
public String getBrowserType() { public String getBrowserType() {
return browserType; return browserType;
} }
public void setBrowserType(String browserType) { public void setBrowserType(String browserType) {
this.browserType = browserType; this.browserType = browserType;
} }
public String getFileName() { public String getFileName() {
return fileName; return fileName;
} }
public void setFileName(String fileName) { public void setFileName(String fileName) {
this.fileName = fileName; this.fileName = fileName;
} }
public InputStream getExcelStream() { public InputStream getExcelStream() {
return excelStream; return excelStream;
} }
public void setExcelStream(InputStream excelStream) { public void setExcelStream(InputStream excelStream) {
this.excelStream = excelStream; this.excelStream = excelStream;
} }
public File getMaterialFile() { public File getMaterialFile() {
return materialFile; return materialFile;
} }
public void setMaterialFile(File materialFile) { public void setMaterialFile(File materialFile) {
this.materialFile = materialFile; this.materialFile = materialFile;
} }
public String getMpList() { public String getMpList() {
return mpList; return mpList;
} }
public void setMpList(String mpList) { public void setMpList(String mpList) {
this.mpList = mpList; this.mpList = mpList;
} }
} }
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