update
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Account implements java.io.Serializable
|
||||
{
|
||||
public class Account implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Name;
|
||||
private String SerialNo;
|
||||
@@ -11,13 +10,11 @@ public class Account implements java.io.Serializable
|
||||
private Boolean IsDefault;
|
||||
private String Remark;
|
||||
|
||||
public Account()
|
||||
{
|
||||
public Account() {
|
||||
|
||||
}
|
||||
|
||||
public Account(Long Id)
|
||||
{
|
||||
public Account(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
@@ -30,56 +27,46 @@ public class Account implements java.io.Serializable
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
Name = name;
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setSerialNo(String serialNo)
|
||||
{
|
||||
SerialNo = serialNo;
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getSerialNo()
|
||||
{
|
||||
public String getSerialNo() {
|
||||
return SerialNo;
|
||||
}
|
||||
|
||||
public void setInitialAmount(Double initialAmount)
|
||||
{
|
||||
InitialAmount = initialAmount;
|
||||
public void setSerialNo(String serialNo) {
|
||||
SerialNo = serialNo;
|
||||
}
|
||||
|
||||
public Double getInitialAmount()
|
||||
{
|
||||
public Double getInitialAmount() {
|
||||
return InitialAmount;
|
||||
}
|
||||
|
||||
public void setCurrentAmount(Double currentAmount)
|
||||
{
|
||||
CurrentAmount = currentAmount;
|
||||
public void setInitialAmount(Double initialAmount) {
|
||||
InitialAmount = initialAmount;
|
||||
}
|
||||
|
||||
public Double getCurrentAmount()
|
||||
{
|
||||
public Double getCurrentAmount() {
|
||||
return CurrentAmount;
|
||||
}
|
||||
|
||||
public void setCurrentAmount(Double currentAmount) {
|
||||
CurrentAmount = currentAmount;
|
||||
}
|
||||
|
||||
public Boolean getIsDefault() {
|
||||
return IsDefault;
|
||||
}
|
||||
@@ -88,13 +75,11 @@ public class Account implements java.io.Serializable
|
||||
IsDefault = isDefault;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
return Remark;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,33 +3,29 @@ package com.jsh.model.po;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountHead implements java.io.Serializable
|
||||
{
|
||||
public class AccountHead implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private Supplier OrganId;
|
||||
private Person HandsPersonId;
|
||||
private Person HandsPersonId;
|
||||
private Double ChangeAmount;
|
||||
private Double TotalPrice;
|
||||
private Account AccountId;
|
||||
private String BillNo;
|
||||
private Timestamp BillTime;
|
||||
private Timestamp BillTime;
|
||||
private String Remark;
|
||||
|
||||
public AccountHead()
|
||||
{
|
||||
public AccountHead() {
|
||||
|
||||
}
|
||||
|
||||
public AccountHead(Long Id)
|
||||
{
|
||||
this.Id = Id ;
|
||||
public AccountHead(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public AccountHead(String type, Supplier organId,
|
||||
Person handsPersonId, Double changeAmount, Double totalPrice,
|
||||
Account accountId, String billNo, Timestamp billTime, String remark)
|
||||
{
|
||||
Person handsPersonId, Double changeAmount, Double totalPrice,
|
||||
Account accountId, String billNo, Timestamp billTime, String remark) {
|
||||
super();
|
||||
Type = type;
|
||||
OrganId = organId;
|
||||
@@ -42,102 +38,84 @@ public class AccountHead implements java.io.Serializable
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setType(String type)
|
||||
{
|
||||
Type = type;
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setOrganId(Supplier organId)
|
||||
{
|
||||
OrganId = organId;
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public Supplier getOrganId()
|
||||
{
|
||||
public Supplier getOrganId() {
|
||||
return OrganId;
|
||||
}
|
||||
|
||||
public void setHandsPersonId(Person handsPersonId)
|
||||
{
|
||||
HandsPersonId = handsPersonId;
|
||||
public void setOrganId(Supplier organId) {
|
||||
OrganId = organId;
|
||||
}
|
||||
|
||||
public Person getHandsPersonId()
|
||||
{
|
||||
public Person getHandsPersonId() {
|
||||
return HandsPersonId;
|
||||
}
|
||||
|
||||
public void setChangeAmount(Double changeAmount)
|
||||
{
|
||||
public void setHandsPersonId(Person handsPersonId) {
|
||||
HandsPersonId = handsPersonId;
|
||||
}
|
||||
|
||||
public Double getChangeAmount() {
|
||||
return ChangeAmount;
|
||||
}
|
||||
|
||||
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(Account accountId)
|
||||
{
|
||||
AccountId = accountId;
|
||||
public Double getTotalPrice() {
|
||||
return TotalPrice;
|
||||
}
|
||||
|
||||
public Account getAccountId()
|
||||
{
|
||||
public void setTotalPrice(Double totalPrice) {
|
||||
TotalPrice = totalPrice;
|
||||
}
|
||||
|
||||
public Account getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
|
||||
public void setBillNo(String billNo)
|
||||
{
|
||||
BillNo = billNo;
|
||||
public void setAccountId(Account accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
|
||||
public String getBillNo()
|
||||
{
|
||||
public String getBillNo() {
|
||||
return BillNo;
|
||||
}
|
||||
|
||||
public void setBillTime(Timestamp billTime)
|
||||
{
|
||||
BillTime = billTime;
|
||||
public void setBillNo(String billNo) {
|
||||
BillNo = billNo;
|
||||
}
|
||||
|
||||
public Timestamp getBillTime()
|
||||
{
|
||||
public Timestamp getBillTime() {
|
||||
return BillTime;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public void setBillTime(Timestamp billTime) {
|
||||
BillTime = billTime;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountItem implements java.io.Serializable
|
||||
{
|
||||
public class AccountItem implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private AccountHead HeaderId;
|
||||
private Account AccountId;
|
||||
@@ -10,19 +9,16 @@ public class AccountItem implements java.io.Serializable
|
||||
private Double EachAmount;
|
||||
private String Remark;
|
||||
|
||||
public AccountItem()
|
||||
{
|
||||
public AccountItem() {
|
||||
|
||||
}
|
||||
|
||||
public AccountItem(Long Id)
|
||||
{
|
||||
this.Id = Id ;
|
||||
public AccountItem(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public AccountItem(AccountHead headerId, Account accountId,
|
||||
InOutItem inOutItemId, Double eachAmount, String remark)
|
||||
{
|
||||
InOutItem inOutItemId, Double eachAmount, String remark) {
|
||||
super();
|
||||
HeaderId = headerId;
|
||||
AccountId = accountId;
|
||||
@@ -31,64 +27,52 @@ public class AccountItem implements java.io.Serializable
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setHeaderId(AccountHead headerId)
|
||||
{
|
||||
HeaderId = headerId;
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public AccountHead getHeaderId()
|
||||
{
|
||||
public AccountHead getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
|
||||
public void setAccountId(Account accountId)
|
||||
{
|
||||
AccountId = accountId;
|
||||
public void setHeaderId(AccountHead headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
|
||||
public Account getAccountId()
|
||||
{
|
||||
public Account getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
|
||||
public void setInOutItemId(InOutItem inOutItemId)
|
||||
{
|
||||
InOutItemId = inOutItemId;
|
||||
public void setAccountId(Account accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
|
||||
public InOutItem getInOutItemId()
|
||||
{
|
||||
public InOutItem getInOutItemId() {
|
||||
return InOutItemId;
|
||||
}
|
||||
|
||||
public void setEachAmount(Double eachAmount)
|
||||
{
|
||||
EachAmount = eachAmount;
|
||||
public void setInOutItemId(InOutItem inOutItemId) {
|
||||
InOutItemId = inOutItemId;
|
||||
}
|
||||
|
||||
public Double getEachAmount()
|
||||
{
|
||||
public Double getEachAmount() {
|
||||
return EachAmount;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public void setEachAmount(Double eachAmount) {
|
||||
EachAmount = eachAmount;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,174 +1,170 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class App implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Number;
|
||||
private String Name;
|
||||
private String Type;
|
||||
private String Icon;
|
||||
private String URL;
|
||||
private String Width;
|
||||
private String Height;
|
||||
private Boolean ReSize;
|
||||
private Boolean OpenMax;
|
||||
private Boolean Flash;
|
||||
private String ZL;
|
||||
private String Sort;
|
||||
private String Remark;
|
||||
private Boolean Enabled;
|
||||
|
||||
|
||||
public App()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public App(Long Id)
|
||||
{
|
||||
this.Id = Id ;
|
||||
}
|
||||
public class App implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Number;
|
||||
private String Name;
|
||||
private String Type;
|
||||
private String Icon;
|
||||
private String URL;
|
||||
private String Width;
|
||||
private String Height;
|
||||
private Boolean ReSize;
|
||||
private Boolean OpenMax;
|
||||
private Boolean Flash;
|
||||
private String ZL;
|
||||
private String Sort;
|
||||
private String Remark;
|
||||
private Boolean Enabled;
|
||||
|
||||
public App(String Number, String Name, String Type, String Icon, String URL, String Width,
|
||||
String Height, Boolean ReSize, Boolean OpenMax, Boolean Flash, String ZL, String Sort,
|
||||
String Remark, Boolean Enabled)
|
||||
{
|
||||
this.Number = Number;
|
||||
this.Name = Name;
|
||||
this.Type = Type;
|
||||
this.Icon = Icon;
|
||||
this.URL = URL;
|
||||
this.Width = Width;
|
||||
this.Height = Height;
|
||||
this.ReSize = ReSize;
|
||||
this.OpenMax = OpenMax;
|
||||
this.Flash = Flash;
|
||||
this.ZL = ZL;
|
||||
this.Sort = Sort;
|
||||
this.Remark = Remark;
|
||||
this.Enabled = Enabled;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
public App() {
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
public App(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
public App(String Number, String Name, String Type, String Icon, String URL, String Width,
|
||||
String Height, Boolean ReSize, Boolean OpenMax, Boolean Flash, String ZL, String Sort,
|
||||
String Remark, Boolean Enabled) {
|
||||
this.Number = Number;
|
||||
this.Name = Name;
|
||||
this.Type = Type;
|
||||
this.Icon = Icon;
|
||||
this.URL = URL;
|
||||
this.Width = Width;
|
||||
this.Height = Height;
|
||||
this.ReSize = ReSize;
|
||||
this.OpenMax = OpenMax;
|
||||
this.Flash = Flash;
|
||||
this.ZL = ZL;
|
||||
this.Sort = Sort;
|
||||
this.Remark = Remark;
|
||||
this.Enabled = Enabled;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return Icon;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
Icon = icon;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public String getWidth() {
|
||||
return Width;
|
||||
}
|
||||
public String getIcon() {
|
||||
return Icon;
|
||||
}
|
||||
|
||||
public void setWidth(String width) {
|
||||
Width = width;
|
||||
}
|
||||
public void setIcon(String icon) {
|
||||
Icon = icon;
|
||||
}
|
||||
|
||||
public String getHeight() {
|
||||
return Height;
|
||||
}
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
|
||||
public void setHeight(String height) {
|
||||
Height = height;
|
||||
}
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
|
||||
public Boolean getReSize() {
|
||||
return ReSize;
|
||||
}
|
||||
public String getWidth() {
|
||||
return Width;
|
||||
}
|
||||
|
||||
public void setReSize(Boolean reSize) {
|
||||
ReSize = reSize;
|
||||
}
|
||||
public void setWidth(String width) {
|
||||
Width = width;
|
||||
}
|
||||
|
||||
public Boolean getOpenMax() {
|
||||
return OpenMax;
|
||||
}
|
||||
public String getHeight() {
|
||||
return Height;
|
||||
}
|
||||
|
||||
public void setOpenMax(Boolean openMax) {
|
||||
OpenMax = openMax;
|
||||
}
|
||||
public void setHeight(String height) {
|
||||
Height = height;
|
||||
}
|
||||
|
||||
public Boolean getFlash() {
|
||||
return Flash;
|
||||
}
|
||||
public Boolean getReSize() {
|
||||
return ReSize;
|
||||
}
|
||||
|
||||
public void setFlash(Boolean flash) {
|
||||
Flash = flash;
|
||||
}
|
||||
public void setReSize(Boolean reSize) {
|
||||
ReSize = reSize;
|
||||
}
|
||||
|
||||
public String getZL() {
|
||||
return ZL;
|
||||
}
|
||||
public Boolean getOpenMax() {
|
||||
return OpenMax;
|
||||
}
|
||||
|
||||
public void setZL(String zL) {
|
||||
ZL = zL;
|
||||
}
|
||||
public void setOpenMax(Boolean openMax) {
|
||||
OpenMax = openMax;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
public Boolean getFlash() {
|
||||
return Flash;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
public void setFlash(Boolean flash) {
|
||||
Flash = flash;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public String getZL() {
|
||||
return ZL;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public void setZL(String zL) {
|
||||
ZL = zL;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -4,376 +4,317 @@ import java.sql.Timestamp;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Asset implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private Assetname assetname;
|
||||
private String location;
|
||||
private Short status;
|
||||
private Basicuser user;
|
||||
private Double price;
|
||||
private Timestamp purchasedate;
|
||||
private Timestamp periodofvalidity;
|
||||
private Timestamp warrantydate;
|
||||
private String assetnum;
|
||||
private String serialnum;
|
||||
private Supplier supplier;
|
||||
private String labels;
|
||||
private String description;
|
||||
private String addMonth;
|
||||
private Timestamp createtime;
|
||||
private Basicuser creator;
|
||||
private Timestamp updatetime;
|
||||
private Basicuser updator;
|
||||
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
public class Asset implements java.io.Serializable {
|
||||
private Long id;
|
||||
private Assetname assetname;
|
||||
private String location;
|
||||
private Short status;
|
||||
private Basicuser user;
|
||||
private Double price;
|
||||
private Timestamp purchasedate;
|
||||
private Timestamp periodofvalidity;
|
||||
private Timestamp warrantydate;
|
||||
private String assetnum;
|
||||
private String serialnum;
|
||||
private Supplier supplier;
|
||||
private String labels;
|
||||
private String description;
|
||||
private String addMonth;
|
||||
private Timestamp createtime;
|
||||
private Basicuser creator;
|
||||
private Timestamp updatetime;
|
||||
private Basicuser updator;
|
||||
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer,String> cellInfo;
|
||||
|
||||
private Map<Integer, String> cellInfo;
|
||||
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
|
||||
|
||||
/**
|
||||
* 保存价格
|
||||
*/
|
||||
private String priceStr;
|
||||
|
||||
|
||||
/**
|
||||
* 资产名称
|
||||
*/
|
||||
private String assetnameStr;
|
||||
|
||||
|
||||
/**
|
||||
* 资产类型
|
||||
*/
|
||||
private String category;
|
||||
|
||||
|
||||
/**
|
||||
* 购买日期
|
||||
*/
|
||||
private String purchasedateStr;
|
||||
|
||||
|
||||
/**
|
||||
* 有效日期
|
||||
*/
|
||||
private String periodofvalidityStr;
|
||||
|
||||
|
||||
/**
|
||||
* 保修日期
|
||||
*/
|
||||
private String warrantydateStr;
|
||||
|
||||
public Asset()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Asset(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Asset(Assetname assetname, String location,
|
||||
Short status, Basicuser user, Double price, Timestamp purchasedate,
|
||||
Timestamp periodofvalidity, Timestamp warrantydate,
|
||||
String assetnum, String serialnum, Supplier supplier,
|
||||
String description, Timestamp createtime, Basicuser creator,
|
||||
Timestamp updatetime,String labels, Basicuser updator,String addMonth)
|
||||
{
|
||||
super();
|
||||
this.assetname = assetname;
|
||||
this.location = location;
|
||||
this.status = status;
|
||||
this.user = user;
|
||||
this.price = price;
|
||||
this.purchasedate = purchasedate;
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
this.warrantydate = warrantydate;
|
||||
this.assetnum = assetnum;
|
||||
this.serialnum = serialnum;
|
||||
this.supplier = supplier;
|
||||
this.description = description;
|
||||
this.createtime = createtime;
|
||||
this.creator = creator;
|
||||
this.updatetime = updatetime;
|
||||
this.updator = updator;
|
||||
this.labels = labels;
|
||||
this.addMonth = addMonth;
|
||||
}
|
||||
|
||||
public Asset() {
|
||||
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Assetname getAssetname()
|
||||
{
|
||||
return assetname;
|
||||
}
|
||||
|
||||
public void setAssetname(Assetname assetname)
|
||||
{
|
||||
this.assetname = assetname;
|
||||
}
|
||||
|
||||
public String getLocation()
|
||||
{
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location)
|
||||
{
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Basicuser getUser()
|
||||
{
|
||||
return user;
|
||||
}
|
||||
|
||||
public void setUser(Basicuser user)
|
||||
{
|
||||
this.user = user;
|
||||
}
|
||||
|
||||
public Double getPrice()
|
||||
{
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(Double price)
|
||||
{
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public Timestamp getPurchasedate()
|
||||
{
|
||||
return purchasedate;
|
||||
}
|
||||
|
||||
public void setPurchasedate(Timestamp purchasedate)
|
||||
{
|
||||
this.purchasedate = purchasedate;
|
||||
}
|
||||
|
||||
public Timestamp getPeriodofvalidity()
|
||||
{
|
||||
return periodofvalidity;
|
||||
}
|
||||
|
||||
public void setPeriodofvalidity(Timestamp periodofvalidity)
|
||||
{
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
}
|
||||
|
||||
public Timestamp getWarrantydate()
|
||||
{
|
||||
return warrantydate;
|
||||
}
|
||||
|
||||
public void setWarrantydate(Timestamp warrantydate)
|
||||
{
|
||||
this.warrantydate = warrantydate;
|
||||
}
|
||||
|
||||
public String getAssetnum()
|
||||
{
|
||||
return assetnum;
|
||||
}
|
||||
|
||||
public void setAssetnum(String assetnum)
|
||||
{
|
||||
this.assetnum = assetnum;
|
||||
}
|
||||
|
||||
public String getSerialnum()
|
||||
{
|
||||
return serialnum;
|
||||
}
|
||||
|
||||
public void setSerialnum(String serialnum)
|
||||
{
|
||||
this.serialnum = serialnum;
|
||||
}
|
||||
|
||||
public Supplier getSupplier()
|
||||
{
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(Supplier supplier)
|
||||
{
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Timestamp getCreatetime()
|
||||
{
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Timestamp createtime)
|
||||
{
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Basicuser getCreator()
|
||||
{
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(Basicuser creator)
|
||||
{
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Timestamp getUpdatetime()
|
||||
{
|
||||
return updatetime;
|
||||
}
|
||||
|
||||
public void setUpdatetime(Timestamp updatetime)
|
||||
{
|
||||
this.updatetime = updatetime;
|
||||
}
|
||||
|
||||
public Basicuser getUpdator()
|
||||
{
|
||||
return updator;
|
||||
}
|
||||
|
||||
public void setUpdator(Basicuser updator)
|
||||
{
|
||||
this.updator = updator;
|
||||
}
|
||||
|
||||
public String getLabels()
|
||||
{
|
||||
return labels;
|
||||
}
|
||||
|
||||
public void setLabels(String labels)
|
||||
{
|
||||
public Asset(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Asset(Assetname assetname, String location,
|
||||
Short status, Basicuser user, Double price, Timestamp purchasedate,
|
||||
Timestamp periodofvalidity, Timestamp warrantydate,
|
||||
String assetnum, String serialnum, Supplier supplier,
|
||||
String description, Timestamp createtime, Basicuser creator,
|
||||
Timestamp updatetime, String labels, Basicuser updator, String addMonth) {
|
||||
super();
|
||||
this.assetname = assetname;
|
||||
this.location = location;
|
||||
this.status = status;
|
||||
this.user = user;
|
||||
this.price = price;
|
||||
this.purchasedate = purchasedate;
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
this.warrantydate = warrantydate;
|
||||
this.assetnum = assetnum;
|
||||
this.serialnum = serialnum;
|
||||
this.supplier = supplier;
|
||||
this.description = description;
|
||||
this.createtime = createtime;
|
||||
this.creator = creator;
|
||||
this.updatetime = updatetime;
|
||||
this.updator = updator;
|
||||
this.labels = labels;
|
||||
}
|
||||
|
||||
public String getAddMonth()
|
||||
{
|
||||
return addMonth;
|
||||
}
|
||||
|
||||
public void setAddMonth(String addMonth)
|
||||
{
|
||||
this.addMonth = addMonth;
|
||||
}
|
||||
|
||||
public Integer getRowLineNum()
|
||||
{
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Assetname getAssetname() {
|
||||
return assetname;
|
||||
}
|
||||
|
||||
public void setAssetname(Assetname assetname) {
|
||||
this.assetname = assetname;
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Basicuser getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
public void setUser(Basicuser user) {
|
||||
this.user = user;
|
||||
}
|
||||
|
||||
public Double getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(Double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public Timestamp getPurchasedate() {
|
||||
return purchasedate;
|
||||
}
|
||||
|
||||
public void setPurchasedate(Timestamp purchasedate) {
|
||||
this.purchasedate = purchasedate;
|
||||
}
|
||||
|
||||
public Timestamp getPeriodofvalidity() {
|
||||
return periodofvalidity;
|
||||
}
|
||||
|
||||
public void setPeriodofvalidity(Timestamp periodofvalidity) {
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
}
|
||||
|
||||
public Timestamp getWarrantydate() {
|
||||
return warrantydate;
|
||||
}
|
||||
|
||||
public void setWarrantydate(Timestamp warrantydate) {
|
||||
this.warrantydate = warrantydate;
|
||||
}
|
||||
|
||||
public String getAssetnum() {
|
||||
return assetnum;
|
||||
}
|
||||
|
||||
public void setAssetnum(String assetnum) {
|
||||
this.assetnum = assetnum;
|
||||
}
|
||||
|
||||
public String getSerialnum() {
|
||||
return serialnum;
|
||||
}
|
||||
|
||||
public void setSerialnum(String serialnum) {
|
||||
this.serialnum = serialnum;
|
||||
}
|
||||
|
||||
public Supplier getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(Supplier supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Timestamp getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Timestamp createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Basicuser getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(Basicuser creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Timestamp getUpdatetime() {
|
||||
return updatetime;
|
||||
}
|
||||
|
||||
public void setUpdatetime(Timestamp updatetime) {
|
||||
this.updatetime = updatetime;
|
||||
}
|
||||
|
||||
public Basicuser getUpdator() {
|
||||
return updator;
|
||||
}
|
||||
|
||||
public void setUpdator(Basicuser updator) {
|
||||
this.updator = updator;
|
||||
}
|
||||
|
||||
public String getLabels() {
|
||||
return labels;
|
||||
}
|
||||
|
||||
public void setLabels(String labels) {
|
||||
this.labels = labels;
|
||||
}
|
||||
|
||||
public String getAddMonth() {
|
||||
return addMonth;
|
||||
}
|
||||
|
||||
public void setAddMonth(String addMonth) {
|
||||
this.addMonth = addMonth;
|
||||
}
|
||||
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
|
||||
public void setRowLineNum(Integer rowLineNum)
|
||||
{
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
|
||||
public Map<Integer, String> getCellInfo()
|
||||
{
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
|
||||
public void setCellInfo(Map<Integer, String> cellInfo)
|
||||
{
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
|
||||
public String getPriceStr()
|
||||
{
|
||||
public String getPriceStr() {
|
||||
return priceStr;
|
||||
}
|
||||
|
||||
public void setPriceStr(String priceStr)
|
||||
{
|
||||
public void setPriceStr(String priceStr) {
|
||||
this.priceStr = priceStr;
|
||||
}
|
||||
|
||||
public String getAssetnameStr()
|
||||
{
|
||||
public String getAssetnameStr() {
|
||||
return assetnameStr;
|
||||
}
|
||||
|
||||
public void setAssetnameStr(String assetnameStr)
|
||||
{
|
||||
public void setAssetnameStr(String assetnameStr) {
|
||||
this.assetnameStr = assetnameStr;
|
||||
}
|
||||
|
||||
public String getCategory()
|
||||
{
|
||||
public String getCategory() {
|
||||
return category;
|
||||
}
|
||||
|
||||
public void setCategory(String category)
|
||||
{
|
||||
public void setCategory(String category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public String getPurchasedateStr()
|
||||
{
|
||||
public String getPurchasedateStr() {
|
||||
return purchasedateStr;
|
||||
}
|
||||
|
||||
public void setPurchasedateStr(String purchasedateStr)
|
||||
{
|
||||
public void setPurchasedateStr(String purchasedateStr) {
|
||||
this.purchasedateStr = purchasedateStr;
|
||||
}
|
||||
|
||||
public String getPeriodofvalidityStr()
|
||||
{
|
||||
public String getPeriodofvalidityStr() {
|
||||
return periodofvalidityStr;
|
||||
}
|
||||
|
||||
public void setPeriodofvalidityStr(String periodofvalidityStr)
|
||||
{
|
||||
public void setPeriodofvalidityStr(String periodofvalidityStr) {
|
||||
this.periodofvalidityStr = periodofvalidityStr;
|
||||
}
|
||||
|
||||
public String getWarrantydateStr()
|
||||
{
|
||||
public String getWarrantydateStr() {
|
||||
return warrantydateStr;
|
||||
}
|
||||
|
||||
public void setWarrantydateStr(String warrantydateStr)
|
||||
{
|
||||
public void setWarrantydateStr(String warrantydateStr) {
|
||||
this.warrantydateStr = warrantydateStr;
|
||||
}
|
||||
}
|
||||
@@ -1,93 +1,77 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Assetname implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String assetname;
|
||||
private Short isystem;
|
||||
private Category category;
|
||||
private String description;
|
||||
private Short isconsumables;
|
||||
public class Assetname implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String assetname;
|
||||
private Short isystem;
|
||||
private Category category;
|
||||
private String description;
|
||||
private Short isconsumables;
|
||||
|
||||
public Assetname()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Assetname(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Assetname() {
|
||||
|
||||
public Assetname(String assetname, Short isystem, String description,
|
||||
Short isconsumables,Category category)
|
||||
{
|
||||
this.assetname = assetname;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.isconsumables = isconsumables;
|
||||
this.category = category;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return this.id;
|
||||
}
|
||||
public Assetname(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Assetname(String assetname, Short isystem, String description,
|
||||
Short isconsumables, Category category) {
|
||||
this.assetname = assetname;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.isconsumables = isconsumables;
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public String getAssetname()
|
||||
{
|
||||
return this.assetname;
|
||||
}
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setAssetname(String assetname)
|
||||
{
|
||||
this.assetname = assetname;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Short getIsystem()
|
||||
{
|
||||
return this.isystem;
|
||||
}
|
||||
public String getAssetname() {
|
||||
return this.assetname;
|
||||
}
|
||||
|
||||
public void setIsystem(Short isystem)
|
||||
{
|
||||
this.isystem = isystem;
|
||||
}
|
||||
public void setAssetname(String assetname) {
|
||||
this.assetname = assetname;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return this.description;
|
||||
}
|
||||
public Short getIsystem() {
|
||||
return this.isystem;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
public Short getIsconsumables()
|
||||
{
|
||||
return this.isconsumables;
|
||||
}
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setIsconsumables(Short isconsumables)
|
||||
{
|
||||
this.isconsumables = isconsumables;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Category getCategory()
|
||||
{
|
||||
public Short getIsconsumables() {
|
||||
return this.isconsumables;
|
||||
}
|
||||
|
||||
public void setIsconsumables(Short isconsumables) {
|
||||
this.isconsumables = isconsumables;
|
||||
}
|
||||
|
||||
public Category getCategory() {
|
||||
return category;
|
||||
}
|
||||
|
||||
public void setCategory(Category category)
|
||||
{
|
||||
public void setCategory(Category category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,177 +1,147 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Basicuser implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String username;
|
||||
private String loginame;
|
||||
private String password;
|
||||
private String position;
|
||||
private String department;
|
||||
private String email;
|
||||
private String phonenum;
|
||||
private Short ismanager;
|
||||
private Short isystem;
|
||||
private Short status;
|
||||
private String description;
|
||||
private String remark;
|
||||
public class Basicuser implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String username;
|
||||
private String loginame;
|
||||
private String password;
|
||||
private String position;
|
||||
private String department;
|
||||
private String email;
|
||||
private String phonenum;
|
||||
private Short ismanager;
|
||||
private Short isystem;
|
||||
private Short status;
|
||||
private String description;
|
||||
private String remark;
|
||||
|
||||
public Basicuser()
|
||||
{
|
||||
}
|
||||
public Basicuser() {
|
||||
}
|
||||
|
||||
public Basicuser(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Basicuser(String username, String loginame, String password,
|
||||
String position, String department, String email, String phonenum,
|
||||
Short ismanager, Short isystem, Short status, String description,
|
||||
String remark)
|
||||
{
|
||||
this.username = username;
|
||||
this.loginame = loginame;
|
||||
this.password = password;
|
||||
this.position = position;
|
||||
this.department = department;
|
||||
this.email = email;
|
||||
this.phonenum = phonenum;
|
||||
this.ismanager = ismanager;
|
||||
this.isystem = isystem;
|
||||
this.status = status;
|
||||
this.description = description;
|
||||
this.remark = remark;
|
||||
}
|
||||
public Basicuser(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return this.id;
|
||||
}
|
||||
public Basicuser(String username, String loginame, String password,
|
||||
String position, String department, String email, String phonenum,
|
||||
Short ismanager, Short isystem, Short status, String description,
|
||||
String remark) {
|
||||
this.username = username;
|
||||
this.loginame = loginame;
|
||||
this.password = password;
|
||||
this.position = position;
|
||||
this.department = department;
|
||||
this.email = email;
|
||||
this.phonenum = phonenum;
|
||||
this.ismanager = ismanager;
|
||||
this.isystem = isystem;
|
||||
this.status = status;
|
||||
this.description = description;
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getUsername()
|
||||
{
|
||||
return this.username;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setUsername(String username)
|
||||
{
|
||||
this.username = username;
|
||||
}
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
public String getLoginame()
|
||||
{
|
||||
return this.loginame;
|
||||
}
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public void setLoginame(String loginame)
|
||||
{
|
||||
this.loginame = loginame;
|
||||
}
|
||||
public String getLoginame() {
|
||||
return this.loginame;
|
||||
}
|
||||
|
||||
public String getPassword()
|
||||
{
|
||||
return this.password;
|
||||
}
|
||||
public void setLoginame(String loginame) {
|
||||
this.loginame = loginame;
|
||||
}
|
||||
|
||||
public void setPassword(String password)
|
||||
{
|
||||
this.password = password;
|
||||
}
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
public String getPosition()
|
||||
{
|
||||
return this.position;
|
||||
}
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public void setPosition(String position)
|
||||
{
|
||||
this.position = position;
|
||||
}
|
||||
public String getPosition() {
|
||||
return this.position;
|
||||
}
|
||||
|
||||
public String getDepartment()
|
||||
{
|
||||
return this.department;
|
||||
}
|
||||
public void setPosition(String position) {
|
||||
this.position = position;
|
||||
}
|
||||
|
||||
public void setDepartment(String department)
|
||||
{
|
||||
this.department = department;
|
||||
}
|
||||
public String getDepartment() {
|
||||
return this.department;
|
||||
}
|
||||
|
||||
public String getEmail()
|
||||
{
|
||||
return this.email;
|
||||
}
|
||||
public void setDepartment(String department) {
|
||||
this.department = department;
|
||||
}
|
||||
|
||||
public void setEmail(String email)
|
||||
{
|
||||
this.email = email;
|
||||
}
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public String getPhonenum()
|
||||
{
|
||||
return this.phonenum;
|
||||
}
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public void setPhonenum(String phonenum)
|
||||
{
|
||||
this.phonenum = phonenum;
|
||||
}
|
||||
public String getPhonenum() {
|
||||
return this.phonenum;
|
||||
}
|
||||
|
||||
public Short getIsmanager()
|
||||
{
|
||||
return this.ismanager;
|
||||
}
|
||||
public void setPhonenum(String phonenum) {
|
||||
this.phonenum = phonenum;
|
||||
}
|
||||
|
||||
public void setIsmanager(Short ismanager)
|
||||
{
|
||||
this.ismanager = ismanager;
|
||||
}
|
||||
public Short getIsmanager() {
|
||||
return this.ismanager;
|
||||
}
|
||||
|
||||
public Short getIsystem()
|
||||
{
|
||||
return this.isystem;
|
||||
}
|
||||
public void setIsmanager(Short ismanager) {
|
||||
this.ismanager = ismanager;
|
||||
}
|
||||
|
||||
public void setIsystem(Short isystem)
|
||||
{
|
||||
this.isystem = isystem;
|
||||
}
|
||||
public Short getIsystem() {
|
||||
return this.isystem;
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
return this.status;
|
||||
}
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return this.description;
|
||||
}
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
return this.remark;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
this.remark = remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
@@ -1,67 +1,55 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Category implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String assetname;
|
||||
private Short isystem;
|
||||
private String description;
|
||||
public class Category implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String assetname;
|
||||
private Short isystem;
|
||||
private String description;
|
||||
|
||||
public Category()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Category(Long id)
|
||||
{
|
||||
this.id = id ;
|
||||
}
|
||||
public Category() {
|
||||
|
||||
public Category(String assetname, Short isystem, String description)
|
||||
{
|
||||
this.assetname = assetname;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return this.id;
|
||||
}
|
||||
public Category(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Category(String assetname, Short isystem, String description) {
|
||||
this.assetname = assetname;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getAssetname()
|
||||
{
|
||||
return this.assetname;
|
||||
}
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setAssetname(String assetname)
|
||||
{
|
||||
this.assetname = assetname;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Short getIsystem()
|
||||
{
|
||||
return this.isystem;
|
||||
}
|
||||
public String getAssetname() {
|
||||
return this.assetname;
|
||||
}
|
||||
|
||||
public void setIsystem(Short isystem)
|
||||
{
|
||||
this.isystem = isystem;
|
||||
}
|
||||
public void setAssetname(String assetname) {
|
||||
this.assetname = assetname;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return this.description;
|
||||
}
|
||||
public Short getIsystem() {
|
||||
return this.isystem;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
}
|
||||
@@ -1,100 +1,96 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Depot implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String name;
|
||||
private String address;
|
||||
private Double warehousing;
|
||||
private Double truckage;
|
||||
private Integer type;
|
||||
private String sort;
|
||||
private String remark;
|
||||
public class Depot implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String name;
|
||||
private String address;
|
||||
private Double warehousing;
|
||||
private Double truckage;
|
||||
private Integer type;
|
||||
private String sort;
|
||||
private String remark;
|
||||
|
||||
public Depot()
|
||||
{
|
||||
public Depot() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public Depot(Long id)
|
||||
{
|
||||
this.id = id ;
|
||||
}
|
||||
public Depot(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Depot(String name, String address, Double warehousing, Double truckage, Integer type, String sort, String remark)
|
||||
{
|
||||
this.name = name;
|
||||
this.address = address;
|
||||
this.warehousing = warehousing;
|
||||
this.truckage = truckage;
|
||||
this.type = type;
|
||||
this.sort = sort;
|
||||
this.remark = remark;
|
||||
}
|
||||
public Depot(String name, String address, Double warehousing, Double truckage, Integer type, String sort, String remark) {
|
||||
this.name = name;
|
||||
this.address = address;
|
||||
this.warehousing = warehousing;
|
||||
this.truckage = truckage;
|
||||
this.type = type;
|
||||
this.sort = sort;
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public Double getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
public Double getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
|
||||
public void setWarehousing(Double warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
public void setWarehousing(Double warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
|
||||
public Double getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
public Double getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
|
||||
public void setTruckage(Double truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
public void setTruckage(Double truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -3,301 +3,298 @@ package com.jsh.model.po;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotHead implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String SubType;
|
||||
private Depot ProjectId;
|
||||
private String DefaultNumber;
|
||||
private String Number;
|
||||
private String OperPersonName;
|
||||
private Timestamp CreateTime;
|
||||
private Timestamp OperTime;
|
||||
private Supplier OrganId;
|
||||
private Person HandsPersonId;
|
||||
private String Salesman; //业务员(可以多个)[2][3]
|
||||
private Account AccountId;
|
||||
private Double ChangeAmount;
|
||||
private String AccountIdList; //多账户ID列表 [2][3]
|
||||
private String AccountMoneyList; //多账户金额列表 [{"[2]",22},{"[3]",33}]
|
||||
private Double Discount; //优惠率 0.10
|
||||
private Double DiscountMoney; //优惠金额 10
|
||||
private Double DiscountLastMoney; //优惠后金额 90
|
||||
private Double OtherMoney; //销售或采购费用 100
|
||||
private String OtherMoneyList; //销售或采购费用涉及项目Id数组(包括快递、招待等)[2][3]
|
||||
private String OtherMoneyItem; //销售费用涉及项目(包括快递、招待等) [{"[2]",22},{"[3]",33}]
|
||||
private Integer AccountDay; //结算天数
|
||||
private Depot AllocationProjectId;
|
||||
private Double TotalPrice;
|
||||
private String PayType;
|
||||
private Boolean Status = false; //单据状态
|
||||
private String Remark;
|
||||
public class DepotHead implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String SubType;
|
||||
private Depot ProjectId;
|
||||
private String DefaultNumber;
|
||||
private String Number;
|
||||
private String OperPersonName;
|
||||
private Timestamp CreateTime;
|
||||
private Timestamp OperTime;
|
||||
private Supplier OrganId;
|
||||
private Person HandsPersonId;
|
||||
private String Salesman; //业务员(可以多个)[2][3]
|
||||
private Account AccountId;
|
||||
private Double ChangeAmount;
|
||||
private String AccountIdList; //多账户ID列表 [2][3]
|
||||
private String AccountMoneyList; //多账户金额列表 [{"[2]",22},{"[3]",33}]
|
||||
private Double Discount; //优惠率 0.10
|
||||
private Double DiscountMoney; //优惠金额 10
|
||||
private Double DiscountLastMoney; //优惠后金额 90
|
||||
private Double OtherMoney; //销售或采购费用 100
|
||||
private String OtherMoneyList; //销售或采购费用涉及项目Id数组(包括快递、招待等)[2][3]
|
||||
private String OtherMoneyItem; //销售费用涉及项目(包括快递、招待等) [{"[2]",22},{"[3]",33}]
|
||||
private Integer AccountDay; //结算天数
|
||||
private Depot AllocationProjectId;
|
||||
private Double TotalPrice;
|
||||
private String PayType;
|
||||
private Boolean Status = false; //单据状态
|
||||
private String Remark;
|
||||
|
||||
public DepotHead()
|
||||
{
|
||||
|
||||
}
|
||||
public DepotHead() {
|
||||
|
||||
public DepotHead(Long Id)
|
||||
{
|
||||
this.Id = Id ;
|
||||
}
|
||||
}
|
||||
|
||||
public DepotHead(String type, String subType, Depot projectId, String defaultNumber, String number, String operPersonName, Timestamp createTime,
|
||||
Timestamp operTime, Supplier organId, Person handsPersonId, String salesman, String accountIdList,String accountMoneyList,
|
||||
Double discount, Double discountMoney,Double discountLastMoney, Double otherMoney, String otherMoneyItem,Integer accountDay,
|
||||
Account accountId, Double changeAmount, Depot allocationProjectId, Double totalPrice,String payType, Boolean status, String remark) {
|
||||
super();
|
||||
Type = type;
|
||||
SubType = subType;
|
||||
ProjectId = projectId;
|
||||
DefaultNumber = defaultNumber;
|
||||
Number = number;
|
||||
OperPersonName = operPersonName;
|
||||
CreateTime = createTime;
|
||||
OperTime = operTime;
|
||||
OrganId = organId;
|
||||
HandsPersonId = handsPersonId;
|
||||
Salesman= salesman;
|
||||
AccountIdList= accountIdList;
|
||||
AccountMoneyList= accountMoneyList;
|
||||
Discount= discount;
|
||||
DiscountMoney = discountMoney;
|
||||
DiscountLastMoney = discountLastMoney;
|
||||
OtherMoney = otherMoney;
|
||||
OtherMoneyItem = otherMoneyItem;
|
||||
AccountDay = accountDay;
|
||||
AccountId = accountId;
|
||||
ChangeAmount = changeAmount;
|
||||
AllocationProjectId = allocationProjectId;
|
||||
TotalPrice = totalPrice;
|
||||
PayType = payType;
|
||||
Status = status;
|
||||
Remark = remark;
|
||||
}
|
||||
public DepotHead(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
public DepotHead(String type, String subType, Depot projectId, String defaultNumber, String number, String operPersonName, Timestamp createTime,
|
||||
Timestamp operTime, Supplier organId, Person handsPersonId, String salesman, String accountIdList, String accountMoneyList,
|
||||
Double discount, Double discountMoney, Double discountLastMoney, Double otherMoney, String otherMoneyItem, Integer accountDay,
|
||||
Account accountId, Double changeAmount, Depot allocationProjectId, Double totalPrice, String payType, Boolean status, String remark) {
|
||||
super();
|
||||
Type = type;
|
||||
SubType = subType;
|
||||
ProjectId = projectId;
|
||||
DefaultNumber = defaultNumber;
|
||||
Number = number;
|
||||
OperPersonName = operPersonName;
|
||||
CreateTime = createTime;
|
||||
OperTime = operTime;
|
||||
OrganId = organId;
|
||||
HandsPersonId = handsPersonId;
|
||||
Salesman = salesman;
|
||||
AccountIdList = accountIdList;
|
||||
AccountMoneyList = accountMoneyList;
|
||||
Discount = discount;
|
||||
DiscountMoney = discountMoney;
|
||||
DiscountLastMoney = discountLastMoney;
|
||||
OtherMoney = otherMoney;
|
||||
OtherMoneyItem = otherMoneyItem;
|
||||
AccountDay = accountDay;
|
||||
AccountId = accountId;
|
||||
ChangeAmount = changeAmount;
|
||||
AllocationProjectId = allocationProjectId;
|
||||
TotalPrice = totalPrice;
|
||||
PayType = payType;
|
||||
Status = status;
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public String getSubType() {
|
||||
return SubType;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public void setSubType(String subType) {
|
||||
SubType = subType;
|
||||
}
|
||||
public String getSubType() {
|
||||
return SubType;
|
||||
}
|
||||
|
||||
public Depot getProjectId() {
|
||||
return ProjectId;
|
||||
}
|
||||
public void setSubType(String subType) {
|
||||
SubType = subType;
|
||||
}
|
||||
|
||||
public void setProjectId(Depot projectId) {
|
||||
ProjectId = projectId;
|
||||
}
|
||||
public Depot getProjectId() {
|
||||
return ProjectId;
|
||||
}
|
||||
|
||||
public String getDefaultNumber() {
|
||||
return DefaultNumber;
|
||||
}
|
||||
public void setProjectId(Depot projectId) {
|
||||
ProjectId = projectId;
|
||||
}
|
||||
|
||||
public void setDefaultNumber(String defaultNumber) {
|
||||
DefaultNumber = defaultNumber;
|
||||
}
|
||||
public String getDefaultNumber() {
|
||||
return DefaultNumber;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
public void setDefaultNumber(String defaultNumber) {
|
||||
DefaultNumber = defaultNumber;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public String getOperPersonName() {
|
||||
return OperPersonName;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public void setOperPersonName(String operPersonName) {
|
||||
OperPersonName = operPersonName;
|
||||
}
|
||||
public String getOperPersonName() {
|
||||
return OperPersonName;
|
||||
}
|
||||
|
||||
public Timestamp getCreateTime() {
|
||||
return CreateTime;
|
||||
}
|
||||
public void setOperPersonName(String operPersonName) {
|
||||
OperPersonName = operPersonName;
|
||||
}
|
||||
|
||||
public void setCreateTime(Timestamp createTime) {
|
||||
CreateTime = createTime;
|
||||
}
|
||||
public Timestamp getCreateTime() {
|
||||
return CreateTime;
|
||||
}
|
||||
|
||||
public Timestamp getOperTime() {
|
||||
return OperTime;
|
||||
}
|
||||
public void setCreateTime(Timestamp createTime) {
|
||||
CreateTime = createTime;
|
||||
}
|
||||
|
||||
public void setOperTime(Timestamp operTime) {
|
||||
OperTime = operTime;
|
||||
}
|
||||
public Timestamp getOperTime() {
|
||||
return OperTime;
|
||||
}
|
||||
|
||||
public Supplier getOrganId() {
|
||||
return OrganId;
|
||||
}
|
||||
public void setOperTime(Timestamp operTime) {
|
||||
OperTime = operTime;
|
||||
}
|
||||
|
||||
public void setOrganId(Supplier organId) {
|
||||
OrganId = organId;
|
||||
}
|
||||
public Supplier getOrganId() {
|
||||
return OrganId;
|
||||
}
|
||||
|
||||
public Person getHandsPersonId() {
|
||||
return HandsPersonId;
|
||||
}
|
||||
public void setOrganId(Supplier organId) {
|
||||
OrganId = organId;
|
||||
}
|
||||
|
||||
public void setHandsPersonId(Person handsPersonId) {
|
||||
HandsPersonId = handsPersonId;
|
||||
}
|
||||
|
||||
public Account getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
public Person getHandsPersonId() {
|
||||
return HandsPersonId;
|
||||
}
|
||||
|
||||
public void setAccountId(Account accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
public void setHandsPersonId(Person handsPersonId) {
|
||||
HandsPersonId = handsPersonId;
|
||||
}
|
||||
|
||||
public Double getChangeAmount() {
|
||||
return ChangeAmount;
|
||||
}
|
||||
public Account getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
|
||||
public void setChangeAmount(Double changeAmount) {
|
||||
ChangeAmount = changeAmount;
|
||||
}
|
||||
public void setAccountId(Account accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
|
||||
public Depot getAllocationProjectId() {
|
||||
return AllocationProjectId;
|
||||
}
|
||||
public Double getChangeAmount() {
|
||||
return ChangeAmount;
|
||||
}
|
||||
|
||||
public void setAllocationProjectId(Depot allocationProjectId) {
|
||||
AllocationProjectId = allocationProjectId;
|
||||
}
|
||||
public void setChangeAmount(Double changeAmount) {
|
||||
ChangeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public Double getTotalPrice() {
|
||||
return TotalPrice;
|
||||
}
|
||||
public Depot getAllocationProjectId() {
|
||||
return AllocationProjectId;
|
||||
}
|
||||
|
||||
public void setTotalPrice(Double totalPrice) {
|
||||
TotalPrice = totalPrice;
|
||||
}
|
||||
public void setAllocationProjectId(Depot allocationProjectId) {
|
||||
AllocationProjectId = allocationProjectId;
|
||||
}
|
||||
|
||||
public String getPayType() {
|
||||
return PayType;
|
||||
}
|
||||
public Double getTotalPrice() {
|
||||
return TotalPrice;
|
||||
}
|
||||
|
||||
public void setPayType(String payType) {
|
||||
PayType = payType;
|
||||
}
|
||||
public void setTotalPrice(Double totalPrice) {
|
||||
TotalPrice = totalPrice;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public String getPayType() {
|
||||
return PayType;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public void setPayType(String payType) {
|
||||
PayType = payType;
|
||||
}
|
||||
|
||||
public String getSalesman() {
|
||||
return Salesman;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setSalesman(String salesman) {
|
||||
Salesman = salesman;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public String getAccountIdList() {
|
||||
return AccountIdList;
|
||||
}
|
||||
public String getSalesman() {
|
||||
return Salesman;
|
||||
}
|
||||
|
||||
public void setAccountIdList(String accountIdList) {
|
||||
AccountIdList = accountIdList;
|
||||
}
|
||||
public void setSalesman(String salesman) {
|
||||
Salesman = salesman;
|
||||
}
|
||||
|
||||
public String getAccountMoneyList() {
|
||||
return AccountMoneyList;
|
||||
}
|
||||
public String getAccountIdList() {
|
||||
return AccountIdList;
|
||||
}
|
||||
|
||||
public void setAccountMoneyList(String accountMoneyList) {
|
||||
AccountMoneyList = accountMoneyList;
|
||||
}
|
||||
public void setAccountIdList(String accountIdList) {
|
||||
AccountIdList = accountIdList;
|
||||
}
|
||||
|
||||
public Double getDiscount() {
|
||||
return Discount;
|
||||
}
|
||||
public String getAccountMoneyList() {
|
||||
return AccountMoneyList;
|
||||
}
|
||||
|
||||
public void setDiscount(Double discount) {
|
||||
Discount = discount;
|
||||
}
|
||||
public void setAccountMoneyList(String accountMoneyList) {
|
||||
AccountMoneyList = accountMoneyList;
|
||||
}
|
||||
|
||||
public Double getDiscountMoney() {
|
||||
return DiscountMoney;
|
||||
}
|
||||
public Double getDiscount() {
|
||||
return Discount;
|
||||
}
|
||||
|
||||
public void setDiscountMoney(Double discountMoney) {
|
||||
DiscountMoney = discountMoney;
|
||||
}
|
||||
public void setDiscount(Double discount) {
|
||||
Discount = discount;
|
||||
}
|
||||
|
||||
public Double getDiscountLastMoney() {
|
||||
return DiscountLastMoney;
|
||||
}
|
||||
public Double getDiscountMoney() {
|
||||
return DiscountMoney;
|
||||
}
|
||||
|
||||
public void setDiscountLastMoney(Double discountLastMoney) {
|
||||
DiscountLastMoney = discountLastMoney;
|
||||
}
|
||||
public void setDiscountMoney(Double discountMoney) {
|
||||
DiscountMoney = discountMoney;
|
||||
}
|
||||
|
||||
public Double getOtherMoney() {
|
||||
return OtherMoney;
|
||||
}
|
||||
public Double getDiscountLastMoney() {
|
||||
return DiscountLastMoney;
|
||||
}
|
||||
|
||||
public void setOtherMoney(Double otherMoney) {
|
||||
OtherMoney = otherMoney;
|
||||
}
|
||||
public void setDiscountLastMoney(Double discountLastMoney) {
|
||||
DiscountLastMoney = discountLastMoney;
|
||||
}
|
||||
|
||||
public String getOtherMoneyList() {
|
||||
return OtherMoneyList;
|
||||
}
|
||||
public Double getOtherMoney() {
|
||||
return OtherMoney;
|
||||
}
|
||||
|
||||
public void setOtherMoneyList(String otherMoneyList) {
|
||||
OtherMoneyList = otherMoneyList;
|
||||
}
|
||||
public void setOtherMoney(Double otherMoney) {
|
||||
OtherMoney = otherMoney;
|
||||
}
|
||||
|
||||
public String getOtherMoneyItem() {
|
||||
return OtherMoneyItem;
|
||||
}
|
||||
public String getOtherMoneyList() {
|
||||
return OtherMoneyList;
|
||||
}
|
||||
|
||||
public void setOtherMoneyItem(String otherMoneyItem) {
|
||||
OtherMoneyItem = otherMoneyItem;
|
||||
}
|
||||
public void setOtherMoneyList(String otherMoneyList) {
|
||||
OtherMoneyList = otherMoneyList;
|
||||
}
|
||||
|
||||
public Integer getAccountDay() {
|
||||
return AccountDay;
|
||||
}
|
||||
public String getOtherMoneyItem() {
|
||||
return OtherMoneyItem;
|
||||
}
|
||||
|
||||
public void setAccountDay(Integer accountDay) {
|
||||
AccountDay = accountDay;
|
||||
}
|
||||
public void setOtherMoneyItem(String otherMoneyItem) {
|
||||
OtherMoneyItem = otherMoneyItem;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return Status;
|
||||
}
|
||||
public Integer getAccountDay() {
|
||||
return AccountDay;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
Status = status;
|
||||
}
|
||||
public void setAccountDay(Integer accountDay) {
|
||||
AccountDay = accountDay;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return Status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
Status = status;
|
||||
}
|
||||
}
|
||||
@@ -1,243 +1,240 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotItem implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private DepotHead HeaderId;
|
||||
private Material MaterialId;
|
||||
private String MUnit; //计量单位
|
||||
private Double OperNumber;
|
||||
private Double BasicNumber;
|
||||
private Double UnitPrice;
|
||||
private Double TaxUnitPrice; //含税单价
|
||||
private Double AllPrice;
|
||||
private String Remark;
|
||||
private String Img;
|
||||
private Depot DepotId; //仓库ID
|
||||
private Depot AnotherDepotId; //对方仓库Id
|
||||
private Double TaxRate; //税率
|
||||
private Double TaxMoney; //税额
|
||||
private Double TaxLastMoney; //价税合计
|
||||
private String OtherField1; //自定义字段1-品名
|
||||
private String OtherField2; //自定义字段2-型号
|
||||
private String OtherField3; //自定义字段3-制造商
|
||||
private String OtherField4; //自定义字段4
|
||||
private String OtherField5; //自定义字段5
|
||||
private String MType; //商品类型
|
||||
public class DepotItem implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private DepotHead HeaderId;
|
||||
private Material MaterialId;
|
||||
private String MUnit; //计量单位
|
||||
private Double OperNumber;
|
||||
private Double BasicNumber;
|
||||
private Double UnitPrice;
|
||||
private Double TaxUnitPrice; //含税单价
|
||||
private Double AllPrice;
|
||||
private String Remark;
|
||||
private String Img;
|
||||
private Depot DepotId; //仓库ID
|
||||
private Depot AnotherDepotId; //对方仓库Id
|
||||
private Double TaxRate; //税率
|
||||
private Double TaxMoney; //税额
|
||||
private Double TaxLastMoney; //价税合计
|
||||
private String OtherField1; //自定义字段1-品名
|
||||
private String OtherField2; //自定义字段2-型号
|
||||
private String OtherField3; //自定义字段3-制造商
|
||||
private String OtherField4; //自定义字段4
|
||||
private String OtherField5; //自定义字段5
|
||||
private String MType; //商品类型
|
||||
|
||||
|
||||
public DepotItem()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public DepotItem(Long Id)
|
||||
{
|
||||
this.Id = Id ;
|
||||
}
|
||||
public DepotItem() {
|
||||
|
||||
public DepotItem(DepotHead headerId, Material materialId, String mUnit,
|
||||
Double operNumber, Double basicNumber, Double unitPrice, Double taxUnitPrice, Double allPrice, String remark, String img,
|
||||
Depot depotId, Depot anotherDepotId, Double taxRate, Double taxMoney, Double taxLastMoney,
|
||||
String otherField1, String otherField2, String otherField3, String otherField4, String otherField5, String mType) {
|
||||
super();
|
||||
HeaderId = headerId;
|
||||
MaterialId = materialId;
|
||||
MUnit = mUnit;
|
||||
OperNumber = operNumber;
|
||||
BasicNumber = basicNumber;
|
||||
UnitPrice = unitPrice;
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
AllPrice = allPrice;
|
||||
Remark = remark;
|
||||
Img = img;
|
||||
DepotId = depotId;
|
||||
AnotherDepotId = anotherDepotId;
|
||||
TaxRate = taxRate;
|
||||
TaxMoney = taxMoney;
|
||||
TaxLastMoney = taxLastMoney;
|
||||
OtherField1 = otherField1;
|
||||
OtherField2 = otherField2;
|
||||
OtherField3 = otherField3;
|
||||
OtherField4 = otherField4;
|
||||
OtherField5 = otherField5;
|
||||
MType = mType;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
public DepotItem(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public DepotItem(DepotHead headerId, Material materialId, String mUnit,
|
||||
Double operNumber, Double basicNumber, Double unitPrice, Double taxUnitPrice, Double allPrice, String remark, String img,
|
||||
Depot depotId, Depot anotherDepotId, Double taxRate, Double taxMoney, Double taxLastMoney,
|
||||
String otherField1, String otherField2, String otherField3, String otherField4, String otherField5, String mType) {
|
||||
super();
|
||||
HeaderId = headerId;
|
||||
MaterialId = materialId;
|
||||
MUnit = mUnit;
|
||||
OperNumber = operNumber;
|
||||
BasicNumber = basicNumber;
|
||||
UnitPrice = unitPrice;
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
AllPrice = allPrice;
|
||||
Remark = remark;
|
||||
Img = img;
|
||||
DepotId = depotId;
|
||||
AnotherDepotId = anotherDepotId;
|
||||
TaxRate = taxRate;
|
||||
TaxMoney = taxMoney;
|
||||
TaxLastMoney = taxLastMoney;
|
||||
OtherField1 = otherField1;
|
||||
OtherField2 = otherField2;
|
||||
OtherField3 = otherField3;
|
||||
OtherField4 = otherField4;
|
||||
OtherField5 = otherField5;
|
||||
MType = mType;
|
||||
}
|
||||
|
||||
public DepotHead getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setHeaderId(DepotHead headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Material getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
public DepotHead getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
|
||||
public void setMaterialId(Material materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
public void setHeaderId(DepotHead headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
|
||||
public String getMUnit() {
|
||||
return MUnit;
|
||||
}
|
||||
public Material getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
|
||||
public void setMUnit(String MUnit) {
|
||||
this.MUnit = MUnit;
|
||||
}
|
||||
public void setMaterialId(Material materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
|
||||
public Double getTaxUnitPrice() {
|
||||
return TaxUnitPrice;
|
||||
}
|
||||
public String getMUnit() {
|
||||
return MUnit;
|
||||
}
|
||||
|
||||
public void setTaxUnitPrice(Double taxUnitPrice) {
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
}
|
||||
public void setMUnit(String MUnit) {
|
||||
this.MUnit = MUnit;
|
||||
}
|
||||
|
||||
public Double getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
public Double getTaxUnitPrice() {
|
||||
return TaxUnitPrice;
|
||||
}
|
||||
|
||||
public void setOperNumber(Double operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
public void setTaxUnitPrice(Double taxUnitPrice) {
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
}
|
||||
|
||||
public Double getBasicNumber() {
|
||||
return BasicNumber;
|
||||
}
|
||||
public Double getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
|
||||
public void setBasicNumber(Double basicNumber) {
|
||||
BasicNumber = basicNumber;
|
||||
}
|
||||
public void setOperNumber(Double operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
|
||||
public Double getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
public Double getBasicNumber() {
|
||||
return BasicNumber;
|
||||
}
|
||||
|
||||
public void setUnitPrice(Double unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
public void setBasicNumber(Double basicNumber) {
|
||||
BasicNumber = basicNumber;
|
||||
}
|
||||
|
||||
public Double getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
public Double getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(Double allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
public void setUnitPrice(Double unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public Double getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public void setAllPrice(Double allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
return Img;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
Img = img;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public Depot getDepotId() {
|
||||
return DepotId;
|
||||
}
|
||||
public String getImg() {
|
||||
return Img;
|
||||
}
|
||||
|
||||
public void setDepotId(Depot depotId) {
|
||||
DepotId = depotId;
|
||||
}
|
||||
public void setImg(String img) {
|
||||
Img = img;
|
||||
}
|
||||
|
||||
public Depot getAnotherDepotId() {
|
||||
return AnotherDepotId;
|
||||
}
|
||||
public Depot getDepotId() {
|
||||
return DepotId;
|
||||
}
|
||||
|
||||
public void setAnotherDepotId(Depot anotherDepotId) {
|
||||
AnotherDepotId = anotherDepotId;
|
||||
}
|
||||
public void setDepotId(Depot depotId) {
|
||||
DepotId = depotId;
|
||||
}
|
||||
|
||||
public Double getTaxRate() {
|
||||
return TaxRate;
|
||||
}
|
||||
public Depot getAnotherDepotId() {
|
||||
return AnotherDepotId;
|
||||
}
|
||||
|
||||
public void setTaxRate(Double taxRate) {
|
||||
TaxRate = taxRate;
|
||||
}
|
||||
public void setAnotherDepotId(Depot anotherDepotId) {
|
||||
AnotherDepotId = anotherDepotId;
|
||||
}
|
||||
|
||||
public Double getTaxMoney() {
|
||||
return TaxMoney;
|
||||
}
|
||||
public Double getTaxRate() {
|
||||
return TaxRate;
|
||||
}
|
||||
|
||||
public void setTaxMoney(Double taxMoney) {
|
||||
TaxMoney = taxMoney;
|
||||
}
|
||||
public void setTaxRate(Double taxRate) {
|
||||
TaxRate = taxRate;
|
||||
}
|
||||
|
||||
public Double getTaxLastMoney() {
|
||||
return TaxLastMoney;
|
||||
}
|
||||
public Double getTaxMoney() {
|
||||
return TaxMoney;
|
||||
}
|
||||
|
||||
public void setTaxLastMoney(Double taxLastMoney) {
|
||||
TaxLastMoney = taxLastMoney;
|
||||
}
|
||||
public void setTaxMoney(Double taxMoney) {
|
||||
TaxMoney = taxMoney;
|
||||
}
|
||||
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
public Double getTaxLastMoney() {
|
||||
return TaxLastMoney;
|
||||
}
|
||||
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
public void setTaxLastMoney(Double taxLastMoney) {
|
||||
TaxLastMoney = taxLastMoney;
|
||||
}
|
||||
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
|
||||
public String getOtherField4() {
|
||||
return OtherField4;
|
||||
}
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
|
||||
public void setOtherField4(String otherField4) {
|
||||
OtherField4 = otherField4;
|
||||
}
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public String getOtherField5() {
|
||||
return OtherField5;
|
||||
}
|
||||
public String getOtherField4() {
|
||||
return OtherField4;
|
||||
}
|
||||
|
||||
public void setOtherField5(String otherField5) {
|
||||
OtherField5 = otherField5;
|
||||
}
|
||||
public void setOtherField4(String otherField4) {
|
||||
OtherField4 = otherField4;
|
||||
}
|
||||
|
||||
public String getMType() {
|
||||
return MType;
|
||||
}
|
||||
public String getOtherField5() {
|
||||
return OtherField5;
|
||||
}
|
||||
|
||||
public void setMType(String MType) {
|
||||
this.MType = MType;
|
||||
}
|
||||
public void setOtherField5(String otherField5) {
|
||||
OtherField5 = otherField5;
|
||||
}
|
||||
|
||||
public String getMType() {
|
||||
return MType;
|
||||
}
|
||||
|
||||
public void setMType(String MType) {
|
||||
this.MType = MType;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,101 +1,99 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Functions implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Number;
|
||||
private String Name;
|
||||
private String PNumber;
|
||||
private String URL;
|
||||
private Boolean State;
|
||||
private String Sort;
|
||||
private Boolean Enabled;
|
||||
private String Type;
|
||||
private String PushBtn;
|
||||
public class Functions implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Number;
|
||||
private String Name;
|
||||
private String PNumber;
|
||||
private String URL;
|
||||
private Boolean State;
|
||||
private String Sort;
|
||||
private Boolean Enabled;
|
||||
private String Type;
|
||||
private String PushBtn;
|
||||
|
||||
public Functions()
|
||||
{
|
||||
|
||||
}
|
||||
public Functions() {
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public String getPNumber() {
|
||||
return PNumber;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public void setPNumber(String pNumber) {
|
||||
PNumber = pNumber;
|
||||
}
|
||||
public String getPNumber() {
|
||||
return PNumber;
|
||||
}
|
||||
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
public void setPNumber(String pNumber) {
|
||||
PNumber = pNumber;
|
||||
}
|
||||
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
|
||||
public Boolean getState() {
|
||||
return State;
|
||||
}
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
|
||||
public void setState(Boolean state) {
|
||||
State = state;
|
||||
}
|
||||
public Boolean getState() {
|
||||
return State;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
public void setState(Boolean state) {
|
||||
State = state;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public String getPushBtn() {
|
||||
return PushBtn;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public void setPushBtn(String pushBtn) {
|
||||
PushBtn = pushBtn;
|
||||
}
|
||||
public String getPushBtn() {
|
||||
return PushBtn;
|
||||
}
|
||||
|
||||
public void setPushBtn(String pushBtn) {
|
||||
PushBtn = pushBtn;
|
||||
}
|
||||
}
|
||||
@@ -1,20 +1,17 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class InOutItem implements java.io.Serializable
|
||||
{
|
||||
public class InOutItem implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Name;
|
||||
private String Type;
|
||||
private String Remark;
|
||||
|
||||
public InOutItem()
|
||||
{
|
||||
public InOutItem() {
|
||||
|
||||
}
|
||||
|
||||
public InOutItem(Long Id)
|
||||
{
|
||||
public InOutItem(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
@@ -24,43 +21,35 @@ public class InOutItem implements java.io.Serializable
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
Name = name;
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setType(String type)
|
||||
{
|
||||
Type = type;
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,52 +3,46 @@ package com.jsh.model.po;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Logdetails implements java.io.Serializable
|
||||
{
|
||||
public class Logdetails implements java.io.Serializable {
|
||||
|
||||
private Long id;
|
||||
private Basicuser user;
|
||||
private String operation;
|
||||
private String clientIp;
|
||||
private Timestamp createtime;
|
||||
private Short status;
|
||||
private String contentdetails;
|
||||
private String remark;
|
||||
private Long id;
|
||||
private Basicuser user;
|
||||
private String operation;
|
||||
private String clientIp;
|
||||
private Timestamp createtime;
|
||||
private Short status;
|
||||
private String contentdetails;
|
||||
private String remark;
|
||||
|
||||
public Logdetails()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Logdetails(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Logdetails() {
|
||||
|
||||
public Logdetails(Basicuser user, String operation, String clientIp,
|
||||
Timestamp createtime, Short status, String contentdetails,
|
||||
String remark)
|
||||
{
|
||||
this.user = user;
|
||||
this.operation = operation;
|
||||
this.clientIp = clientIp;
|
||||
this.createtime = createtime;
|
||||
this.status = status;
|
||||
this.contentdetails = contentdetails;
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return this.id;
|
||||
}
|
||||
public Logdetails(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Logdetails(Basicuser user, String operation, String clientIp,
|
||||
Timestamp createtime, Short status, String contentdetails,
|
||||
String remark) {
|
||||
this.user = user;
|
||||
this.operation = operation;
|
||||
this.clientIp = clientIp;
|
||||
this.createtime = createtime;
|
||||
this.status = status;
|
||||
this.contentdetails = contentdetails;
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Basicuser getUser() {
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Basicuser getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
@@ -56,64 +50,52 @@ public class Logdetails implements java.io.Serializable
|
||||
this.user = user;
|
||||
}
|
||||
|
||||
public String getOperation()
|
||||
{
|
||||
return this.operation;
|
||||
}
|
||||
public String getOperation() {
|
||||
return this.operation;
|
||||
}
|
||||
|
||||
public void setOperation(String operation)
|
||||
{
|
||||
this.operation = operation;
|
||||
}
|
||||
public void setOperation(String operation) {
|
||||
this.operation = operation;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
return this.clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return this.clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public Timestamp getCreatetime()
|
||||
{
|
||||
return this.createtime;
|
||||
}
|
||||
public Timestamp getCreatetime() {
|
||||
return this.createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Timestamp createtime)
|
||||
{
|
||||
this.createtime = createtime;
|
||||
}
|
||||
public void setCreatetime(Timestamp createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
return this.status;
|
||||
}
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getContentdetails()
|
||||
{
|
||||
return this.contentdetails;
|
||||
}
|
||||
public String getContentdetails() {
|
||||
return this.contentdetails;
|
||||
}
|
||||
|
||||
public void setContentdetails(String contentdetails)
|
||||
{
|
||||
this.contentdetails = contentdetails;
|
||||
}
|
||||
public void setContentdetails(String contentdetails) {
|
||||
this.contentdetails = contentdetails;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
return this.remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
this.remark = remark;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -3,310 +3,287 @@ package com.jsh.model.po;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Material implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private MaterialCategory materialCategory;
|
||||
private String Name;
|
||||
private String Mfrs;
|
||||
private Double Packing;
|
||||
private Double SafetyStock;
|
||||
private String Model;
|
||||
private String Standard;
|
||||
private String Color;
|
||||
private String Unit;
|
||||
public class Material implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private MaterialCategory materialCategory;
|
||||
private String Name;
|
||||
private String Mfrs;
|
||||
private Double Packing;
|
||||
private Double SafetyStock;
|
||||
private String Model;
|
||||
private String Standard;
|
||||
private String Color;
|
||||
private String Unit;
|
||||
private Double RetailPrice;
|
||||
private Double LowPrice;
|
||||
private Double PresetPriceOne;
|
||||
private Double PresetPriceTwo;
|
||||
private Unit UnitId;
|
||||
private String FirstOutUnit;
|
||||
private String FirstInUnit;
|
||||
private String PriceStrategy;
|
||||
private String Remark;
|
||||
private Boolean Enabled;
|
||||
private String OtherField1;
|
||||
private String OtherField2;
|
||||
private String OtherField3;
|
||||
private Unit UnitId;
|
||||
private String FirstOutUnit;
|
||||
private String FirstInUnit;
|
||||
private String PriceStrategy;
|
||||
private String Remark;
|
||||
private Boolean Enabled;
|
||||
private String OtherField1;
|
||||
private String OtherField2;
|
||||
private String OtherField3;
|
||||
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer,String> cellInfo;
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer, String> cellInfo;
|
||||
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
|
||||
private String safetyStockStr;
|
||||
private String safetyStockStr;
|
||||
|
||||
public Material()
|
||||
{
|
||||
public Material() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public Material(Long Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
}
|
||||
public Material(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public Material(MaterialCategory materialCategory, String name, String mfrs, Double packing,
|
||||
Double safetyStock, String model, String standard, String color, String unit, String remark,
|
||||
Double retailPrice, Double lowPrice, Double presetPriceOne, Double presetPriceTwo,
|
||||
Unit unitId, String firstOutUnit, String firstInUnit, String priceStrategy, Boolean enabled,
|
||||
String otherField1, String otherField2, String otherField3) {
|
||||
super();
|
||||
this.materialCategory = materialCategory;
|
||||
Name = name;
|
||||
Mfrs = mfrs;
|
||||
Packing = packing;
|
||||
SafetyStock = safetyStock;
|
||||
Model = model;
|
||||
Standard = standard;
|
||||
Color = color;
|
||||
Unit = unit;
|
||||
public Material(MaterialCategory materialCategory, String name, String mfrs, Double packing,
|
||||
Double safetyStock, String model, String standard, String color, String unit, String remark,
|
||||
Double retailPrice, Double lowPrice, Double presetPriceOne, Double presetPriceTwo,
|
||||
Unit unitId, String firstOutUnit, String firstInUnit, String priceStrategy, Boolean enabled,
|
||||
String otherField1, String otherField2, String otherField3) {
|
||||
super();
|
||||
this.materialCategory = materialCategory;
|
||||
Name = name;
|
||||
Mfrs = mfrs;
|
||||
Packing = packing;
|
||||
SafetyStock = safetyStock;
|
||||
Model = model;
|
||||
Standard = standard;
|
||||
Color = color;
|
||||
Unit = unit;
|
||||
RetailPrice = retailPrice;
|
||||
LowPrice = lowPrice;
|
||||
PresetPriceOne = presetPriceOne;
|
||||
PresetPriceTwo = presetPriceTwo;
|
||||
Remark = remark;
|
||||
UnitId = unitId;
|
||||
FirstOutUnit = firstOutUnit;
|
||||
FirstInUnit = firstInUnit;
|
||||
PriceStrategy = priceStrategy;
|
||||
Enabled = enabled;
|
||||
OtherField1 = otherField1;
|
||||
OtherField2 = otherField2;
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public MaterialCategory getMaterialCategory()
|
||||
{
|
||||
return materialCategory;
|
||||
}
|
||||
|
||||
public void setMaterialCategory(MaterialCategory materialCategory)
|
||||
{
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getModel()
|
||||
{
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model)
|
||||
{
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return Standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
Standard = standard;
|
||||
}
|
||||
|
||||
public String getColor()
|
||||
{
|
||||
return Color;
|
||||
}
|
||||
|
||||
public void setColor(String color)
|
||||
{
|
||||
Color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return Unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
Unit = unit;
|
||||
}
|
||||
|
||||
public void setRetailPrice(Double retailPrice)
|
||||
{
|
||||
RetailPrice = retailPrice;
|
||||
Remark = remark;
|
||||
UnitId = unitId;
|
||||
FirstOutUnit = firstOutUnit;
|
||||
FirstInUnit = firstInUnit;
|
||||
PriceStrategy = priceStrategy;
|
||||
Enabled = enabled;
|
||||
OtherField1 = otherField1;
|
||||
OtherField2 = otherField2;
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public Double getRetailPrice()
|
||||
{
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public MaterialCategory getMaterialCategory() {
|
||||
return materialCategory;
|
||||
}
|
||||
|
||||
public void setMaterialCategory(MaterialCategory materialCategory) {
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return Standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
Standard = standard;
|
||||
}
|
||||
|
||||
public String getColor() {
|
||||
return Color;
|
||||
}
|
||||
|
||||
public void setColor(String color) {
|
||||
Color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return Unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
Unit = unit;
|
||||
}
|
||||
|
||||
public Double getRetailPrice() {
|
||||
return RetailPrice;
|
||||
}
|
||||
|
||||
public void setLowPrice(Double lowPrice)
|
||||
{
|
||||
LowPrice = lowPrice;
|
||||
public void setRetailPrice(Double retailPrice) {
|
||||
RetailPrice = retailPrice;
|
||||
}
|
||||
|
||||
public Double getLowPrice()
|
||||
{
|
||||
public Double getLowPrice() {
|
||||
return LowPrice;
|
||||
}
|
||||
|
||||
public void setPresetPriceOne(Double presetPriceOne)
|
||||
{
|
||||
PresetPriceOne = presetPriceOne;
|
||||
public void setLowPrice(Double lowPrice) {
|
||||
LowPrice = lowPrice;
|
||||
}
|
||||
|
||||
public Double getPresetPriceOne()
|
||||
{
|
||||
public Double getPresetPriceOne() {
|
||||
return PresetPriceOne;
|
||||
}
|
||||
|
||||
public void setPresetPriceTwo(Double presetPriceTwo)
|
||||
{
|
||||
PresetPriceTwo = presetPriceTwo;
|
||||
public void setPresetPriceOne(Double presetPriceOne) {
|
||||
PresetPriceOne = presetPriceOne;
|
||||
}
|
||||
|
||||
public Double getPresetPriceTwo()
|
||||
{
|
||||
public Double getPresetPriceTwo() {
|
||||
return PresetPriceTwo;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
return Remark;
|
||||
}
|
||||
public void setPresetPriceTwo(Double presetPriceTwo) {
|
||||
PresetPriceTwo = presetPriceTwo;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public String getMfrs() {
|
||||
return Mfrs;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setMfrs(String mfrs) {
|
||||
Mfrs = mfrs;
|
||||
}
|
||||
public String getMfrs() {
|
||||
return Mfrs;
|
||||
}
|
||||
|
||||
public Double getPacking() {
|
||||
return Packing;
|
||||
}
|
||||
public void setMfrs(String mfrs) {
|
||||
Mfrs = mfrs;
|
||||
}
|
||||
|
||||
public void setPacking(Double packing) {
|
||||
Packing = packing;
|
||||
}
|
||||
public Double getPacking() {
|
||||
return Packing;
|
||||
}
|
||||
|
||||
public Double getSafetyStock() {
|
||||
return SafetyStock;
|
||||
}
|
||||
public void setPacking(Double packing) {
|
||||
Packing = packing;
|
||||
}
|
||||
|
||||
public void setSafetyStock(Double safetyStock) {
|
||||
SafetyStock = safetyStock;
|
||||
}
|
||||
public Double getSafetyStock() {
|
||||
return SafetyStock;
|
||||
}
|
||||
|
||||
public Unit getUnitId() {
|
||||
return UnitId;
|
||||
}
|
||||
public void setSafetyStock(Double safetyStock) {
|
||||
SafetyStock = safetyStock;
|
||||
}
|
||||
|
||||
public void setUnitId(Unit unitId) {
|
||||
UnitId = unitId;
|
||||
}
|
||||
public Unit getUnitId() {
|
||||
return UnitId;
|
||||
}
|
||||
|
||||
public String getFirstOutUnit() {
|
||||
return FirstOutUnit;
|
||||
}
|
||||
public void setUnitId(Unit unitId) {
|
||||
UnitId = unitId;
|
||||
}
|
||||
|
||||
public void setFirstOutUnit(String firstOutUnit) {
|
||||
FirstOutUnit = firstOutUnit;
|
||||
}
|
||||
public String getFirstOutUnit() {
|
||||
return FirstOutUnit;
|
||||
}
|
||||
|
||||
public String getFirstInUnit() {
|
||||
return FirstInUnit;
|
||||
}
|
||||
public void setFirstOutUnit(String firstOutUnit) {
|
||||
FirstOutUnit = firstOutUnit;
|
||||
}
|
||||
|
||||
public void setFirstInUnit(String firstInUnit) {
|
||||
FirstInUnit = firstInUnit;
|
||||
}
|
||||
public String getFirstInUnit() {
|
||||
return FirstInUnit;
|
||||
}
|
||||
|
||||
public String getPriceStrategy() {
|
||||
return PriceStrategy;
|
||||
}
|
||||
public void setFirstInUnit(String firstInUnit) {
|
||||
FirstInUnit = firstInUnit;
|
||||
}
|
||||
|
||||
public void setPriceStrategy(String priceStrategy) {
|
||||
PriceStrategy = priceStrategy;
|
||||
}
|
||||
public String getPriceStrategy() {
|
||||
return PriceStrategy;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public void setPriceStrategy(String priceStrategy) {
|
||||
PriceStrategy = priceStrategy;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
|
||||
public String getSafetyStockStr() {
|
||||
return safetyStockStr;
|
||||
}
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
|
||||
public void setSafetyStockStr(String safetyStockStr) {
|
||||
this.safetyStockStr = safetyStockStr;
|
||||
}
|
||||
public String getSafetyStockStr() {
|
||||
return safetyStockStr;
|
||||
}
|
||||
|
||||
public void setSafetyStockStr(String safetyStockStr) {
|
||||
this.safetyStockStr = safetyStockStr;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,61 +1,58 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialCategory implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Name;
|
||||
private Short CategoryLevel;
|
||||
private MaterialCategory materialCategory;
|
||||
|
||||
|
||||
public MaterialCategory()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public MaterialCategory(Long Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
}
|
||||
public class MaterialCategory implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Name;
|
||||
private Short CategoryLevel;
|
||||
private MaterialCategory materialCategory;
|
||||
|
||||
public MaterialCategory(String name, Short categoryLevel,
|
||||
MaterialCategory materialCategory) {
|
||||
Name = name;
|
||||
CategoryLevel = categoryLevel;
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
public MaterialCategory() {
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public MaterialCategory(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public MaterialCategory(String name, Short categoryLevel,
|
||||
MaterialCategory materialCategory) {
|
||||
Name = name;
|
||||
CategoryLevel = categoryLevel;
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
|
||||
public Short getCategoryLevel() {
|
||||
return CategoryLevel;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setCategoryLevel(Short categoryLevel) {
|
||||
CategoryLevel = categoryLevel;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public MaterialCategory getMaterialCategory() {
|
||||
return materialCategory;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setMaterialCategory(MaterialCategory materialCategory) {
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public Short getCategoryLevel() {
|
||||
return CategoryLevel;
|
||||
}
|
||||
|
||||
public void setCategoryLevel(Short categoryLevel) {
|
||||
CategoryLevel = categoryLevel;
|
||||
}
|
||||
|
||||
public MaterialCategory getMaterialCategory() {
|
||||
return materialCategory;
|
||||
}
|
||||
|
||||
public void setMaterialCategory(MaterialCategory materialCategory) {
|
||||
this.materialCategory = materialCategory;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,65 +2,64 @@ package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialProperty implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String nativeName;
|
||||
private Boolean enabled;
|
||||
private String sort;
|
||||
private String anotherName;
|
||||
private Long id;
|
||||
private String nativeName;
|
||||
private Boolean enabled;
|
||||
private String sort;
|
||||
private String anotherName;
|
||||
|
||||
public MaterialProperty() {
|
||||
public MaterialProperty() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public MaterialProperty(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public MaterialProperty(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public MaterialProperty(String nativeName, Boolean enabled,String sort, String anotherName) {
|
||||
nativeName = nativeName;
|
||||
enabled = enabled;
|
||||
sort = sort;
|
||||
anotherName = anotherName;
|
||||
}
|
||||
public MaterialProperty(String nativeName, Boolean enabled, String sort, String anotherName) {
|
||||
nativeName = nativeName;
|
||||
enabled = enabled;
|
||||
sort = sort;
|
||||
anotherName = anotherName;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getNativeName() {
|
||||
return nativeName;
|
||||
}
|
||||
public String getNativeName() {
|
||||
return nativeName;
|
||||
}
|
||||
|
||||
public void setNativeName(String nativeName) {
|
||||
this.nativeName = nativeName;
|
||||
}
|
||||
public void setNativeName(String nativeName) {
|
||||
this.nativeName = nativeName;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getAnotherName() {
|
||||
return anotherName;
|
||||
}
|
||||
public String getAnotherName() {
|
||||
return anotherName;
|
||||
}
|
||||
|
||||
public void setAnotherName(String anotherName) {
|
||||
this.anotherName = anotherName;
|
||||
}
|
||||
public void setAnotherName(String anotherName) {
|
||||
this.anotherName = anotherName;
|
||||
}
|
||||
}
|
||||
@@ -1,49 +1,46 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Person implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String Name;
|
||||
public class Person implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String Name;
|
||||
|
||||
public Person()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Person(Long Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
}
|
||||
public Person() {
|
||||
|
||||
public Person(String type, String name) {
|
||||
Type = type;
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
public Person(Long Id) {
|
||||
this.Id = Id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public Person(String type, String name) {
|
||||
Type = type;
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,31 +1,29 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Role implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Name;
|
||||
public class Role implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Name;
|
||||
|
||||
public Role()
|
||||
{
|
||||
|
||||
}
|
||||
public Role() {
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -3,321 +3,307 @@ package com.jsh.model.po;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Supplier implements java.io.Serializable
|
||||
{
|
||||
private Long id =0l;
|
||||
private String supplier = "";
|
||||
private String type = "";
|
||||
private String contacts = "";
|
||||
private String phonenum = "";
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String email = "";
|
||||
private String address = "";
|
||||
private Double advanceIn = 0d;
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate = 0d;
|
||||
public class Supplier implements java.io.Serializable {
|
||||
private Long id = 0l;
|
||||
private String supplier = "";
|
||||
private String type = "";
|
||||
private String contacts = "";
|
||||
private String phonenum = "";
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String email = "";
|
||||
private String address = "";
|
||||
private Double advanceIn = 0d;
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate = 0d;
|
||||
private Double BeginNeedGet = 0d;
|
||||
private Double BeginNeedPay = 0d;
|
||||
private Double AllNeedGet = 0d;
|
||||
private Double AllNeedPay = 0d;
|
||||
private Short isystem = 1;
|
||||
private String description = "";
|
||||
private Boolean enabled = true;
|
||||
private Short isystem = 1;
|
||||
private String description = "";
|
||||
private Boolean enabled = true;
|
||||
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer,String> cellInfo;
|
||||
//----------以下属性导入exel表格使用--------------------
|
||||
/**
|
||||
* 类型 right--正确 warn--警告 wrong--错误
|
||||
*/
|
||||
private Map<Integer, String> cellInfo;
|
||||
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
/**
|
||||
* 行号
|
||||
*/
|
||||
private Integer rowLineNum;
|
||||
|
||||
private String advanceInStr;
|
||||
private String advanceInStr;
|
||||
|
||||
private String beginNeedGetStr;
|
||||
private String beginNeedGetStr;
|
||||
|
||||
private String beginNeedPayStr;
|
||||
private String beginNeedPayStr;
|
||||
|
||||
private String taxRateStr;
|
||||
private String taxRateStr;
|
||||
|
||||
private String enabledStr;
|
||||
private String enabledStr;
|
||||
|
||||
|
||||
public Supplier()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Supplier(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
public Supplier() {
|
||||
|
||||
public Supplier(String supplier, String type, String contacts, String phonenum,
|
||||
String fax,String telephone, String email, String address, Short isystem, String description,
|
||||
Boolean enabled, Double advanceIn, String taxNum,String bankName,String accountNumber, Double taxRate,
|
||||
Double beginNeedGet,Double beginNeedPay,Double allNeedGet,Double allNeedPay) {
|
||||
super();
|
||||
this.supplier = supplier;
|
||||
this.type = type;
|
||||
this.contacts = contacts;
|
||||
this.phonenum = phonenum;
|
||||
this.fax = fax;
|
||||
this.telephone = telephone;
|
||||
this.address = address;
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public Supplier(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Supplier(String supplier, String type, String contacts, String phonenum,
|
||||
String fax, String telephone, String email, String address, Short isystem, String description,
|
||||
Boolean enabled, Double advanceIn, String taxNum, String bankName, String accountNumber, Double taxRate,
|
||||
Double beginNeedGet, Double beginNeedPay, Double allNeedGet, Double allNeedPay) {
|
||||
super();
|
||||
this.supplier = supplier;
|
||||
this.type = type;
|
||||
this.contacts = contacts;
|
||||
this.phonenum = phonenum;
|
||||
this.fax = fax;
|
||||
this.telephone = telephone;
|
||||
this.address = address;
|
||||
this.email = email;
|
||||
this.BeginNeedGet = beginNeedGet;
|
||||
this.BeginNeedPay = beginNeedPay;
|
||||
this.AllNeedGet = allNeedGet;
|
||||
this.AllNeedPay = allNeedPay;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.enabled = enabled;
|
||||
this.advanceIn = advanceIn;
|
||||
this.taxNum = taxNum;
|
||||
this.bankName = bankName;
|
||||
this.accountNumber = accountNumber;
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
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;
|
||||
this.AllNeedPay = allNeedPay;
|
||||
this.isystem = isystem;
|
||||
this.description = description;
|
||||
this.enabled = enabled;
|
||||
this.advanceIn = advanceIn;
|
||||
this.taxNum = taxNum;
|
||||
this.bankName = bankName;
|
||||
this.accountNumber = accountNumber;
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public Double getBeginNeedGet()
|
||||
{
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
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 Double getBeginNeedGet() {
|
||||
return BeginNeedGet;
|
||||
}
|
||||
|
||||
public void setBeginNeedPay(Double beginNeedPay)
|
||||
{
|
||||
BeginNeedPay = beginNeedPay;
|
||||
public void setBeginNeedGet(Double beginNeedGet) {
|
||||
BeginNeedGet = beginNeedGet;
|
||||
}
|
||||
|
||||
public Double getBeginNeedPay()
|
||||
{
|
||||
public Double getBeginNeedPay() {
|
||||
return BeginNeedPay;
|
||||
}
|
||||
|
||||
public void setAllNeedGet(Double allNeedGet)
|
||||
{
|
||||
AllNeedGet = allNeedGet;
|
||||
public void setBeginNeedPay(Double beginNeedPay) {
|
||||
BeginNeedPay = beginNeedPay;
|
||||
}
|
||||
|
||||
public Double getAllNeedGet()
|
||||
{
|
||||
public Double getAllNeedGet() {
|
||||
return AllNeedGet;
|
||||
}
|
||||
|
||||
public void setAllNeedPay(Double allNeedPay)
|
||||
{
|
||||
AllNeedPay = allNeedPay;
|
||||
public void setAllNeedGet(Double allNeedGet) {
|
||||
AllNeedGet = allNeedGet;
|
||||
}
|
||||
|
||||
public Double getAllNeedPay()
|
||||
{
|
||||
public Double getAllNeedPay() {
|
||||
return AllNeedPay;
|
||||
}
|
||||
|
||||
public Short getIsystem() {
|
||||
return isystem;
|
||||
}
|
||||
public void setAllNeedPay(Double allNeedPay) {
|
||||
AllNeedPay = allNeedPay;
|
||||
}
|
||||
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
public Short getIsystem() {
|
||||
return isystem;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public Double getAdvanceIn() {
|
||||
return advanceIn;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
this.advanceIn = advanceIn;
|
||||
}
|
||||
public Double getAdvanceIn() {
|
||||
return advanceIn;
|
||||
}
|
||||
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
this.advanceIn = advanceIn;
|
||||
}
|
||||
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
public Map<Integer, String> getCellInfo() {
|
||||
return cellInfo;
|
||||
}
|
||||
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
public void setCellInfo(Map<Integer, String> cellInfo) {
|
||||
this.cellInfo = cellInfo;
|
||||
}
|
||||
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
public Integer getRowLineNum() {
|
||||
return rowLineNum;
|
||||
}
|
||||
|
||||
public String getAdvanceInStr() {
|
||||
return advanceInStr;
|
||||
}
|
||||
public void setRowLineNum(Integer rowLineNum) {
|
||||
this.rowLineNum = rowLineNum;
|
||||
}
|
||||
|
||||
public void setAdvanceInStr(String advanceInStr) {
|
||||
this.advanceInStr = advanceInStr;
|
||||
}
|
||||
public String getAdvanceInStr() {
|
||||
return advanceInStr;
|
||||
}
|
||||
|
||||
public String getBeginNeedGetStr() {
|
||||
return beginNeedGetStr;
|
||||
}
|
||||
public void setAdvanceInStr(String advanceInStr) {
|
||||
this.advanceInStr = advanceInStr;
|
||||
}
|
||||
|
||||
public void setBeginNeedGetStr(String beginNeedGetStr) {
|
||||
this.beginNeedGetStr = beginNeedGetStr;
|
||||
}
|
||||
public String getBeginNeedGetStr() {
|
||||
return beginNeedGetStr;
|
||||
}
|
||||
|
||||
public String getBeginNeedPayStr() {
|
||||
return beginNeedPayStr;
|
||||
}
|
||||
public void setBeginNeedGetStr(String beginNeedGetStr) {
|
||||
this.beginNeedGetStr = beginNeedGetStr;
|
||||
}
|
||||
|
||||
public void setBeginNeedPayStr(String beginNeedPayStr) {
|
||||
this.beginNeedPayStr = beginNeedPayStr;
|
||||
}
|
||||
public String getBeginNeedPayStr() {
|
||||
return beginNeedPayStr;
|
||||
}
|
||||
|
||||
public String getTaxRateStr() {
|
||||
return taxRateStr;
|
||||
}
|
||||
public void setBeginNeedPayStr(String beginNeedPayStr) {
|
||||
this.beginNeedPayStr = beginNeedPayStr;
|
||||
}
|
||||
|
||||
public void setTaxRateStr(String taxRateStr) {
|
||||
this.taxRateStr = taxRateStr;
|
||||
}
|
||||
public String getTaxRateStr() {
|
||||
return taxRateStr;
|
||||
}
|
||||
|
||||
public String getEnabledStr() {
|
||||
return enabledStr;
|
||||
}
|
||||
public void setTaxRateStr(String taxRateStr) {
|
||||
this.taxRateStr = taxRateStr;
|
||||
}
|
||||
|
||||
public void setEnabledStr(String enabledStr) {
|
||||
this.enabledStr = enabledStr;
|
||||
}
|
||||
public String getEnabledStr() {
|
||||
return enabledStr;
|
||||
}
|
||||
|
||||
public void setEnabledStr(String enabledStr) {
|
||||
this.enabledStr = enabledStr;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,51 +1,50 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SystemConfig implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String type;
|
||||
private String name;
|
||||
private String value;
|
||||
private String description;
|
||||
public class SystemConfig implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String type;
|
||||
private String name;
|
||||
private String value;
|
||||
private String description;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
}
|
||||
@@ -1,39 +1,36 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class Unit implements java.io.Serializable
|
||||
{
|
||||
private Long id;
|
||||
private String UName;
|
||||
public class Unit implements java.io.Serializable {
|
||||
private Long id;
|
||||
private String UName;
|
||||
|
||||
public Unit()
|
||||
{
|
||||
public Unit() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public Unit(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public Unit(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Unit(String UName)
|
||||
{
|
||||
this.UName = UName;
|
||||
}
|
||||
public Unit(String UName) {
|
||||
this.UName = UName;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUName() {
|
||||
return UName;
|
||||
}
|
||||
public String getUName() {
|
||||
return UName;
|
||||
}
|
||||
|
||||
public void setUName(String UName) {
|
||||
this.UName = UName;
|
||||
}
|
||||
public void setUName(String UName) {
|
||||
this.UName = UName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,56 +1,54 @@
|
||||
package com.jsh.model.po;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UserBusiness implements java.io.Serializable
|
||||
{
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String KeyId;
|
||||
private String Value;
|
||||
private String BtnStr;
|
||||
public class UserBusiness implements java.io.Serializable {
|
||||
private Long Id;
|
||||
private String Type;
|
||||
private String KeyId;
|
||||
private String Value;
|
||||
private String BtnStr;
|
||||
|
||||
public UserBusiness()
|
||||
{
|
||||
|
||||
}
|
||||
public UserBusiness() {
|
||||
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
public Long getId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public String getKeyId() {
|
||||
return KeyId;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public void setKeyId(String keyId) {
|
||||
KeyId = keyId;
|
||||
}
|
||||
public String getKeyId() {
|
||||
return KeyId;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return Value;
|
||||
}
|
||||
public void setKeyId(String keyId) {
|
||||
KeyId = keyId;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
Value = value;
|
||||
}
|
||||
public String getValue() {
|
||||
return Value;
|
||||
}
|
||||
|
||||
public String getBtnStr() {
|
||||
return BtnStr;
|
||||
}
|
||||
public void setValue(String value) {
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public void setBtnStr(String btnStr) {
|
||||
BtnStr = btnStr;
|
||||
}
|
||||
public String getBtnStr() {
|
||||
return BtnStr;
|
||||
}
|
||||
|
||||
public void setBtnStr(String btnStr) {
|
||||
BtnStr = btnStr;
|
||||
}
|
||||
}
|
||||
@@ -5,425 +5,368 @@ import java.io.InputStream;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AssetModel implements Serializable
|
||||
{
|
||||
public class AssetModel implements Serializable {
|
||||
private AssetShowModel showModel = new AssetShowModel();
|
||||
|
||||
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 资产名称ID
|
||||
*/
|
||||
private Long assetNameID ;
|
||||
|
||||
private Long assetNameID;
|
||||
|
||||
/**
|
||||
* 资产类型ID
|
||||
*/
|
||||
private Long assetCategoryID ;
|
||||
|
||||
private Long assetCategoryID;
|
||||
|
||||
/**
|
||||
* 位置属性
|
||||
*/
|
||||
private String location = "";
|
||||
|
||||
|
||||
/**
|
||||
* 状态属性
|
||||
*/
|
||||
private Short status ;
|
||||
|
||||
private Short status;
|
||||
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userID ;
|
||||
|
||||
private Long userID;
|
||||
|
||||
/**
|
||||
* 资产单价
|
||||
*/
|
||||
private double price = 0;
|
||||
|
||||
|
||||
/**
|
||||
* 购买日期
|
||||
*/
|
||||
private String purchasedate = "";
|
||||
|
||||
|
||||
/**
|
||||
* 有效日期
|
||||
*/
|
||||
private String periodofvalidity = "";
|
||||
|
||||
|
||||
/**
|
||||
* 保修日期
|
||||
*/
|
||||
private String warrantydate = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产编号
|
||||
*/
|
||||
private String assetnum = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产序列号
|
||||
*/
|
||||
private String serialnum = "";
|
||||
|
||||
|
||||
/**
|
||||
* 标签
|
||||
*/
|
||||
private String labels = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产ID
|
||||
*/
|
||||
private Long supplierID;
|
||||
|
||||
private Long supplierID;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
private String description = "";
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 资产ID
|
||||
*/
|
||||
private Long assetID;
|
||||
|
||||
|
||||
/**
|
||||
* 资产IDs 批量操作使用
|
||||
*/
|
||||
private String assetIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
|
||||
/**
|
||||
* 输入流,导出excel文件
|
||||
*/
|
||||
private InputStream excelStream;
|
||||
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String fileName = "";
|
||||
|
||||
/**
|
||||
* 是否全部数据--根据搜索条件
|
||||
*/
|
||||
private String isAllData = "";
|
||||
|
||||
/**
|
||||
* 浏览器类型--中文字符乱码问题解决,火狐和IE下字符类型不一样
|
||||
*/
|
||||
private String browserType = "";
|
||||
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
private File assetFile;
|
||||
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
private String assetFileContentType;
|
||||
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String assetFileFileName;
|
||||
|
||||
/**
|
||||
* 是否只手工检查数据 0==检查 1==不检查直接导入数据库中
|
||||
*/
|
||||
private Integer isCheck;
|
||||
private InputStream excelStream;
|
||||
|
||||
public AssetShowModel getShowModel()
|
||||
{
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String fileName = "";
|
||||
|
||||
/**
|
||||
* 是否全部数据--根据搜索条件
|
||||
*/
|
||||
private String isAllData = "";
|
||||
|
||||
/**
|
||||
* 浏览器类型--中文字符乱码问题解决,火狐和IE下字符类型不一样
|
||||
*/
|
||||
private String browserType = "";
|
||||
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
private File assetFile;
|
||||
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
private String assetFileContentType;
|
||||
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String assetFileFileName;
|
||||
|
||||
/**
|
||||
* 是否只手工检查数据 0==检查 1==不检查直接导入数据库中
|
||||
*/
|
||||
private Integer isCheck;
|
||||
|
||||
public AssetShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(AssetShowModel showModel)
|
||||
{
|
||||
public void setShowModel(AssetShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Long getAssetID()
|
||||
{
|
||||
public Long getAssetID() {
|
||||
return assetID;
|
||||
}
|
||||
|
||||
public void setAssetID(Long assetID)
|
||||
{
|
||||
public void setAssetID(Long assetID) {
|
||||
this.assetID = assetID;
|
||||
}
|
||||
|
||||
public String getAssetIDs()
|
||||
{
|
||||
public String getAssetIDs() {
|
||||
return assetIDs;
|
||||
}
|
||||
|
||||
public void setAssetIDs(String assetIDs)
|
||||
{
|
||||
public void setAssetIDs(String assetIDs) {
|
||||
this.assetIDs = assetIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public Long getAssetNameID()
|
||||
{
|
||||
public Long getAssetNameID() {
|
||||
return assetNameID;
|
||||
}
|
||||
|
||||
public void setAssetNameID(Long assetNameID)
|
||||
{
|
||||
public void setAssetNameID(Long assetNameID) {
|
||||
this.assetNameID = assetNameID;
|
||||
}
|
||||
|
||||
public Long getAssetCategoryID()
|
||||
{
|
||||
public Long getAssetCategoryID() {
|
||||
return assetCategoryID;
|
||||
}
|
||||
|
||||
public void setAssetCategoryID(Long assetCategoryID)
|
||||
{
|
||||
public void setAssetCategoryID(Long assetCategoryID) {
|
||||
this.assetCategoryID = assetCategoryID;
|
||||
}
|
||||
|
||||
public String getLocation()
|
||||
{
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location)
|
||||
{
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
public Short getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getUserID()
|
||||
{
|
||||
public Long getUserID() {
|
||||
return userID;
|
||||
}
|
||||
|
||||
public void setUserID(Long userID)
|
||||
{
|
||||
public void setUserID(Long userID) {
|
||||
this.userID = userID;
|
||||
}
|
||||
|
||||
public double getPrice()
|
||||
{
|
||||
public double getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(double price)
|
||||
{
|
||||
public void setPrice(double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getPurchasedate()
|
||||
{
|
||||
public String getPurchasedate() {
|
||||
return purchasedate;
|
||||
}
|
||||
|
||||
public void setPurchasedate(String purchasedate)
|
||||
{
|
||||
public void setPurchasedate(String purchasedate) {
|
||||
this.purchasedate = purchasedate;
|
||||
}
|
||||
|
||||
public String getPeriodofvalidity()
|
||||
{
|
||||
public String getPeriodofvalidity() {
|
||||
return periodofvalidity;
|
||||
}
|
||||
|
||||
public void setPeriodofvalidity(String periodofvalidity)
|
||||
{
|
||||
public void setPeriodofvalidity(String periodofvalidity) {
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
}
|
||||
|
||||
public String getWarrantydate()
|
||||
{
|
||||
public String getWarrantydate() {
|
||||
return warrantydate;
|
||||
}
|
||||
|
||||
public void setWarrantydate(String warrantydate)
|
||||
{
|
||||
public void setWarrantydate(String warrantydate) {
|
||||
this.warrantydate = warrantydate;
|
||||
}
|
||||
|
||||
public String getLabels()
|
||||
{
|
||||
public String getLabels() {
|
||||
return labels;
|
||||
}
|
||||
|
||||
public void setLabels(String labels)
|
||||
{
|
||||
public void setLabels(String labels) {
|
||||
this.labels = labels;
|
||||
}
|
||||
|
||||
public Long getSupplierID()
|
||||
{
|
||||
public Long getSupplierID() {
|
||||
return supplierID;
|
||||
}
|
||||
|
||||
public void setSupplierID(Long supplierID)
|
||||
{
|
||||
public void setSupplierID(Long supplierID) {
|
||||
this.supplierID = supplierID;
|
||||
}
|
||||
|
||||
public String getAssetnum()
|
||||
{
|
||||
public String getAssetnum() {
|
||||
return assetnum;
|
||||
}
|
||||
|
||||
public void setAssetnum(String assetnum)
|
||||
{
|
||||
public void setAssetnum(String assetnum) {
|
||||
this.assetnum = assetnum;
|
||||
}
|
||||
|
||||
public String getSerialnum()
|
||||
{
|
||||
public String getSerialnum() {
|
||||
return serialnum;
|
||||
}
|
||||
|
||||
public void setSerialnum(String serialnum)
|
||||
{
|
||||
public void setSerialnum(String serialnum) {
|
||||
this.serialnum = serialnum;
|
||||
}
|
||||
|
||||
public InputStream getExcelStream()
|
||||
{
|
||||
return excelStream;
|
||||
}
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
|
||||
public void setExcelStream(InputStream excelStream)
|
||||
{
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
|
||||
public String getFileName()
|
||||
{
|
||||
return fileName;
|
||||
}
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName)
|
||||
{
|
||||
this.fileName = fileName;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getIsAllData()
|
||||
{
|
||||
return isAllData;
|
||||
}
|
||||
public String getIsAllData() {
|
||||
return isAllData;
|
||||
}
|
||||
|
||||
public void setIsAllData(String isAllData)
|
||||
{
|
||||
this.isAllData = isAllData;
|
||||
}
|
||||
public void setIsAllData(String isAllData) {
|
||||
this.isAllData = isAllData;
|
||||
}
|
||||
|
||||
public String getBrowserType()
|
||||
{
|
||||
return browserType;
|
||||
}
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
|
||||
public void setBrowserType(String browserType)
|
||||
{
|
||||
this.browserType = browserType;
|
||||
}
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
|
||||
public File getAssetFile()
|
||||
{
|
||||
return assetFile;
|
||||
}
|
||||
public File getAssetFile() {
|
||||
return assetFile;
|
||||
}
|
||||
|
||||
public void setAssetFile(File assetFile)
|
||||
{
|
||||
this.assetFile = assetFile;
|
||||
}
|
||||
public void setAssetFile(File assetFile) {
|
||||
this.assetFile = assetFile;
|
||||
}
|
||||
|
||||
public Integer getIsCheck()
|
||||
{
|
||||
public Integer getIsCheck() {
|
||||
return isCheck;
|
||||
}
|
||||
|
||||
public void setIsCheck(Integer isCheck)
|
||||
{
|
||||
public void setIsCheck(Integer isCheck) {
|
||||
this.isCheck = isCheck;
|
||||
}
|
||||
|
||||
public String getAssetFileContentType()
|
||||
{
|
||||
return assetFileContentType;
|
||||
}
|
||||
public String getAssetFileContentType() {
|
||||
return assetFileContentType;
|
||||
}
|
||||
|
||||
public void setAssetFileContentType(String assetFileContentType)
|
||||
{
|
||||
this.assetFileContentType = assetFileContentType;
|
||||
}
|
||||
public void setAssetFileContentType(String assetFileContentType) {
|
||||
this.assetFileContentType = assetFileContentType;
|
||||
}
|
||||
|
||||
public String getAssetFileFileName()
|
||||
{
|
||||
return assetFileFileName;
|
||||
}
|
||||
public String getAssetFileFileName() {
|
||||
return assetFileFileName;
|
||||
}
|
||||
|
||||
public void setAssetFileFileName(String assetFileFileName)
|
||||
{
|
||||
this.assetFileFileName = assetFileFileName;
|
||||
}
|
||||
public void setAssetFileFileName(String assetFileFileName) {
|
||||
this.assetFileFileName = assetFileFileName;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,39 +5,34 @@ import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings({ "serial" })
|
||||
public class AssetShowModel implements Serializable
|
||||
{
|
||||
@SuppressWarnings({"serial"})
|
||||
public class AssetShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap()
|
||||
{
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public void setMap(Map<String, List> map)
|
||||
{
|
||||
public void setMap(Map<String, List> map) {
|
||||
this.map = map;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,319 +3,276 @@ package com.jsh.model.vo.asset;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class ReportModel implements Serializable
|
||||
{
|
||||
public class ReportModel implements Serializable {
|
||||
private ReportShowModel showModel = new ReportShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 资产名称ID
|
||||
*/
|
||||
private Long assetNameID ;
|
||||
|
||||
private Long assetNameID;
|
||||
|
||||
/**
|
||||
* 资产类型ID
|
||||
*/
|
||||
private Long assetCategoryID ;
|
||||
|
||||
private Long assetCategoryID;
|
||||
|
||||
/**
|
||||
* 位置属性
|
||||
*/
|
||||
private String location = "";
|
||||
|
||||
|
||||
/**
|
||||
* 状态属性
|
||||
*/
|
||||
private Short status ;
|
||||
|
||||
private Short status;
|
||||
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long usernameID ;
|
||||
|
||||
private Long usernameID;
|
||||
|
||||
/**
|
||||
* 资产单价
|
||||
*/
|
||||
private float price = 0;
|
||||
|
||||
|
||||
/**
|
||||
* 购买日期
|
||||
*/
|
||||
private String purchasedate = "";
|
||||
|
||||
|
||||
/**
|
||||
* 有效日期
|
||||
*/
|
||||
private String periodofvalidity = "";
|
||||
|
||||
|
||||
/**
|
||||
* 保修日期
|
||||
*/
|
||||
private String warrantydate = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产编号
|
||||
*/
|
||||
private String assetnum = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产序列号
|
||||
*/
|
||||
private String serialnum = "";
|
||||
|
||||
|
||||
/**
|
||||
* 标签
|
||||
*/
|
||||
private String labels = "";
|
||||
|
||||
|
||||
/**
|
||||
* 资产ID
|
||||
*/
|
||||
private Long supplierID;
|
||||
|
||||
private Long supplierID;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
private String description = "";
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 资产ID
|
||||
*/
|
||||
private Long assetID;
|
||||
|
||||
|
||||
/**
|
||||
* 资产IDs 批量操作使用
|
||||
*/
|
||||
private String assetIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
|
||||
/**
|
||||
* 报表类型
|
||||
*/
|
||||
private Integer reportType;
|
||||
|
||||
public ReportShowModel getShowModel()
|
||||
{
|
||||
public ReportShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(ReportShowModel showModel)
|
||||
{
|
||||
public void setShowModel(ReportShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public Long getAssetNameID()
|
||||
{
|
||||
public Long getAssetNameID() {
|
||||
return assetNameID;
|
||||
}
|
||||
|
||||
public void setAssetNameID(Long assetNameID)
|
||||
{
|
||||
public void setAssetNameID(Long assetNameID) {
|
||||
this.assetNameID = assetNameID;
|
||||
}
|
||||
|
||||
public Long getAssetCategoryID()
|
||||
{
|
||||
public Long getAssetCategoryID() {
|
||||
return assetCategoryID;
|
||||
}
|
||||
|
||||
public void setAssetCategoryID(Long assetCategoryID)
|
||||
{
|
||||
public void setAssetCategoryID(Long assetCategoryID) {
|
||||
this.assetCategoryID = assetCategoryID;
|
||||
}
|
||||
|
||||
public String getLocation()
|
||||
{
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location)
|
||||
{
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
public Short getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getUsernameID()
|
||||
{
|
||||
public Long getUsernameID() {
|
||||
return usernameID;
|
||||
}
|
||||
|
||||
public void setUsernameID(Long usernameID)
|
||||
{
|
||||
public void setUsernameID(Long usernameID) {
|
||||
this.usernameID = usernameID;
|
||||
}
|
||||
|
||||
public float getPrice()
|
||||
{
|
||||
public float getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(float price)
|
||||
{
|
||||
public void setPrice(float price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getPurchasedate()
|
||||
{
|
||||
public String getPurchasedate() {
|
||||
return purchasedate;
|
||||
}
|
||||
|
||||
public void setPurchasedate(String purchasedate)
|
||||
{
|
||||
public void setPurchasedate(String purchasedate) {
|
||||
this.purchasedate = purchasedate;
|
||||
}
|
||||
|
||||
public String getPeriodofvalidity()
|
||||
{
|
||||
public String getPeriodofvalidity() {
|
||||
return periodofvalidity;
|
||||
}
|
||||
|
||||
public void setPeriodofvalidity(String periodofvalidity)
|
||||
{
|
||||
public void setPeriodofvalidity(String periodofvalidity) {
|
||||
this.periodofvalidity = periodofvalidity;
|
||||
}
|
||||
|
||||
public String getWarrantydate()
|
||||
{
|
||||
public String getWarrantydate() {
|
||||
return warrantydate;
|
||||
}
|
||||
|
||||
public void setWarrantydate(String warrantydate)
|
||||
{
|
||||
public void setWarrantydate(String warrantydate) {
|
||||
this.warrantydate = warrantydate;
|
||||
}
|
||||
|
||||
public String getAssetnum()
|
||||
{
|
||||
public String getAssetnum() {
|
||||
return assetnum;
|
||||
}
|
||||
|
||||
public void setAssetnum(String assetnum)
|
||||
{
|
||||
public void setAssetnum(String assetnum) {
|
||||
this.assetnum = assetnum;
|
||||
}
|
||||
|
||||
public String getSerialnum()
|
||||
{
|
||||
public String getSerialnum() {
|
||||
return serialnum;
|
||||
}
|
||||
|
||||
public void setSerialnum(String serialnum)
|
||||
{
|
||||
public void setSerialnum(String serialnum) {
|
||||
this.serialnum = serialnum;
|
||||
}
|
||||
|
||||
public String getLabels()
|
||||
{
|
||||
public String getLabels() {
|
||||
return labels;
|
||||
}
|
||||
|
||||
public void setLabels(String labels)
|
||||
{
|
||||
public void setLabels(String labels) {
|
||||
this.labels = labels;
|
||||
}
|
||||
|
||||
public Long getSupplierID()
|
||||
{
|
||||
public Long getSupplierID() {
|
||||
return supplierID;
|
||||
}
|
||||
|
||||
public void setSupplierID(Long supplierID)
|
||||
{
|
||||
public void setSupplierID(Long supplierID) {
|
||||
this.supplierID = supplierID;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Long getAssetID()
|
||||
{
|
||||
public Long getAssetID() {
|
||||
return assetID;
|
||||
}
|
||||
|
||||
public void setAssetID(Long assetID)
|
||||
{
|
||||
public void setAssetID(Long assetID) {
|
||||
this.assetID = assetID;
|
||||
}
|
||||
|
||||
public String getAssetIDs()
|
||||
{
|
||||
public String getAssetIDs() {
|
||||
return assetIDs;
|
||||
}
|
||||
|
||||
public void setAssetIDs(String assetIDs)
|
||||
{
|
||||
public void setAssetIDs(String assetIDs) {
|
||||
this.assetIDs = assetIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public Integer getReportType()
|
||||
{
|
||||
public Integer getReportType() {
|
||||
return reportType;
|
||||
}
|
||||
|
||||
public void setReportType(Integer reportType)
|
||||
{
|
||||
public void setReportType(Integer reportType) {
|
||||
this.reportType = reportType;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,31 +4,26 @@ import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@SuppressWarnings({"serial","rawtypes"})
|
||||
public class ReportShowModel implements Serializable
|
||||
{
|
||||
@SuppressWarnings({"serial", "rawtypes"})
|
||||
public class ReportShowModel implements Serializable {
|
||||
//保存报表数据
|
||||
private List reportData = new ArrayList();
|
||||
private List reportData = new ArrayList();
|
||||
//保存提示信息
|
||||
private String msgTip = "";
|
||||
|
||||
public List getReportData()
|
||||
{
|
||||
|
||||
public List getReportData() {
|
||||
return reportData;
|
||||
}
|
||||
|
||||
public void setReportData(List reportData)
|
||||
{
|
||||
|
||||
public void setReportData(List reportData) {
|
||||
this.reportData = reportData;
|
||||
}
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountModel implements Serializable
|
||||
{
|
||||
public class AccountModel implements Serializable {
|
||||
private AccountShowModel showModel = new AccountShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -17,12 +16,12 @@ public class AccountModel implements Serializable
|
||||
* 编号
|
||||
*/
|
||||
private String serialNo = "";
|
||||
|
||||
|
||||
/**
|
||||
* 期初金额
|
||||
*/
|
||||
private Double initialAmount;
|
||||
|
||||
|
||||
/**
|
||||
* 当前余额
|
||||
*/
|
||||
@@ -63,56 +62,46 @@ public class AccountModel implements Serializable
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public void setShowModel(AccountShowModel showModel)
|
||||
{
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public AccountShowModel getShowModel()
|
||||
{
|
||||
public AccountShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
public void setShowModel(AccountShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setSerialNo(String serialNo)
|
||||
{
|
||||
this.serialNo = serialNo;
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getSerialNo()
|
||||
{
|
||||
public String getSerialNo() {
|
||||
return serialNo;
|
||||
}
|
||||
|
||||
public void setInitialAmount(Double initialAmount)
|
||||
{
|
||||
this.initialAmount = initialAmount;
|
||||
public void setSerialNo(String serialNo) {
|
||||
this.serialNo = serialNo;
|
||||
}
|
||||
|
||||
public Double getInitialAmount()
|
||||
{
|
||||
public Double getInitialAmount() {
|
||||
return initialAmount;
|
||||
}
|
||||
|
||||
public void setCurrentAmount(Double currentAmount)
|
||||
{
|
||||
this.currentAmount = currentAmount;
|
||||
public void setInitialAmount(Double initialAmount) {
|
||||
this.initialAmount = initialAmount;
|
||||
}
|
||||
|
||||
public Double getCurrentAmount()
|
||||
{
|
||||
public Double getCurrentAmount() {
|
||||
return currentAmount;
|
||||
}
|
||||
|
||||
public void setCurrentAmount(Double currentAmount) {
|
||||
this.currentAmount = currentAmount;
|
||||
}
|
||||
|
||||
public Boolean getIsDefault() {
|
||||
return isDefault;
|
||||
}
|
||||
@@ -121,63 +110,51 @@ public class AccountModel implements Serializable
|
||||
this.isDefault = isDefault;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setAccountID(Long accountID)
|
||||
{
|
||||
this.accountID = accountID;
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getAccountID()
|
||||
{
|
||||
public Long getAccountID() {
|
||||
return accountID;
|
||||
}
|
||||
|
||||
public void setAccountIDs(String accountIDs)
|
||||
{
|
||||
this.accountIDs = accountIDs;
|
||||
public void setAccountID(Long accountID) {
|
||||
this.accountID = accountID;
|
||||
}
|
||||
|
||||
public String getAccountIDs()
|
||||
{
|
||||
public String getAccountIDs() {
|
||||
return accountIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
public void setAccountIDs(String accountIDs) {
|
||||
this.accountIDs = accountIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
this.clientIp = clientIp;
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountShowModel implements Serializable
|
||||
{
|
||||
public class AccountShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
@@ -17,15 +16,13 @@ public class AccountShowModel implements Serializable
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
package com.jsh.model.vo.basic;
|
||||
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AppModel implements Serializable
|
||||
{
|
||||
public class AppModel implements Serializable {
|
||||
private AppShowModel showModel = new AppShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -20,54 +17,54 @@ public class AppModel implements Serializable
|
||||
* 名称
|
||||
*/
|
||||
private String Name = "";
|
||||
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String Type = "";
|
||||
|
||||
|
||||
/**
|
||||
* 图标
|
||||
*/
|
||||
private String Icon = "";
|
||||
|
||||
private File fileInfo;
|
||||
private String fileInfoName; //图片名称
|
||||
private File fileInfo;
|
||||
private String fileInfoName; //图片名称
|
||||
/**
|
||||
* 链接
|
||||
*/
|
||||
private String URL = "";
|
||||
|
||||
|
||||
/**
|
||||
* 宽度
|
||||
*/
|
||||
private String Width = "";
|
||||
|
||||
|
||||
/**
|
||||
* 高度
|
||||
*/
|
||||
private String Height = "";
|
||||
|
||||
|
||||
/**
|
||||
* 拉伸
|
||||
*/
|
||||
private Boolean ReSize = false;
|
||||
|
||||
|
||||
/**
|
||||
* 最大化
|
||||
*/
|
||||
private Boolean OpenMax = false;
|
||||
|
||||
|
||||
/**
|
||||
* Flash
|
||||
*/
|
||||
private Boolean Flash = false;
|
||||
|
||||
|
||||
/**
|
||||
* 种类
|
||||
*/
|
||||
private String ZL = "";
|
||||
|
||||
|
||||
/**
|
||||
* 排序号
|
||||
*/
|
||||
@@ -77,238 +74,238 @@ public class AppModel implements Serializable
|
||||
* 备注
|
||||
*/
|
||||
private String Remark = "";
|
||||
|
||||
|
||||
/**
|
||||
* 启用
|
||||
*/
|
||||
private Boolean Enabled = false;
|
||||
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long appID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String appIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
|
||||
/**
|
||||
* UBType,UserBusiness类型
|
||||
*/
|
||||
private String UBType = "";
|
||||
|
||||
|
||||
/**
|
||||
* UBKeyId,UserBusiness关键id
|
||||
*/
|
||||
private String UBKeyId = "";
|
||||
|
||||
|
||||
public AppShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(AppShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public AppShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
public void setShowModel(AppShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public File getFileInfo() {
|
||||
return fileInfo;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public void setFileInfo(File fileInfo) {
|
||||
this.fileInfo = fileInfo;
|
||||
}
|
||||
public File getFileInfo() {
|
||||
return fileInfo;
|
||||
}
|
||||
|
||||
public String getFileInfoName() {
|
||||
return fileInfoName;
|
||||
}
|
||||
public void setFileInfo(File fileInfo) {
|
||||
this.fileInfo = fileInfo;
|
||||
}
|
||||
|
||||
public void setFileInfoName(String fileInfoName) {
|
||||
this.fileInfoName = fileInfoName;
|
||||
}
|
||||
public String getFileInfoName() {
|
||||
return fileInfoName;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public void setFileInfoName(String fileInfoName) {
|
||||
this.fileInfoName = fileInfoName;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return Icon;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
Icon = icon;
|
||||
}
|
||||
public String getIcon() {
|
||||
return Icon;
|
||||
}
|
||||
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
public void setIcon(String icon) {
|
||||
Icon = icon;
|
||||
}
|
||||
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
|
||||
public String getWidth() {
|
||||
return Width;
|
||||
}
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
|
||||
public void setWidth(String width) {
|
||||
Width = width;
|
||||
}
|
||||
public String getWidth() {
|
||||
return Width;
|
||||
}
|
||||
|
||||
public String getHeight() {
|
||||
return Height;
|
||||
}
|
||||
public void setWidth(String width) {
|
||||
Width = width;
|
||||
}
|
||||
|
||||
public void setHeight(String height) {
|
||||
Height = height;
|
||||
}
|
||||
public String getHeight() {
|
||||
return Height;
|
||||
}
|
||||
|
||||
public Boolean getReSize() {
|
||||
return ReSize;
|
||||
}
|
||||
public void setHeight(String height) {
|
||||
Height = height;
|
||||
}
|
||||
|
||||
public void setReSize(Boolean reSize) {
|
||||
ReSize = reSize;
|
||||
}
|
||||
public Boolean getReSize() {
|
||||
return ReSize;
|
||||
}
|
||||
|
||||
public Boolean getOpenMax() {
|
||||
return OpenMax;
|
||||
}
|
||||
public void setReSize(Boolean reSize) {
|
||||
ReSize = reSize;
|
||||
}
|
||||
|
||||
public void setOpenMax(Boolean openMax) {
|
||||
OpenMax = openMax;
|
||||
}
|
||||
public Boolean getOpenMax() {
|
||||
return OpenMax;
|
||||
}
|
||||
|
||||
public Boolean getFlash() {
|
||||
return Flash;
|
||||
}
|
||||
public void setOpenMax(Boolean openMax) {
|
||||
OpenMax = openMax;
|
||||
}
|
||||
|
||||
public void setFlash(Boolean flash) {
|
||||
Flash = flash;
|
||||
}
|
||||
public Boolean getFlash() {
|
||||
return Flash;
|
||||
}
|
||||
|
||||
public String getZL() {
|
||||
return ZL;
|
||||
}
|
||||
public void setFlash(Boolean flash) {
|
||||
Flash = flash;
|
||||
}
|
||||
|
||||
public void setZL(String zL) {
|
||||
ZL = zL;
|
||||
}
|
||||
public String getZL() {
|
||||
return ZL;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
public void setZL(String zL) {
|
||||
ZL = zL;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public Long getAppID() {
|
||||
return appID;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
public void setAppID(Long appID) {
|
||||
this.appID = appID;
|
||||
}
|
||||
public Long getAppID() {
|
||||
return appID;
|
||||
}
|
||||
|
||||
public String getAppIDs() {
|
||||
return appIDs;
|
||||
}
|
||||
public void setAppID(Long appID) {
|
||||
this.appID = appID;
|
||||
}
|
||||
|
||||
public void setAppIDs(String appIDs) {
|
||||
this.appIDs = appIDs;
|
||||
}
|
||||
public String getAppIDs() {
|
||||
return appIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public void setAppIDs(String appIDs) {
|
||||
this.appIDs = appIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AppShowModel implements Serializable
|
||||
{
|
||||
public class AppShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AssetNameModel implements Serializable
|
||||
{
|
||||
public class AssetNameModel implements Serializable {
|
||||
private AssetNameShowModel showModel = new AssetNameShowModel();
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
@@ -16,139 +15,119 @@ public class AssetNameModel implements Serializable
|
||||
* 是否易耗品
|
||||
*/
|
||||
private Short consumable;
|
||||
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
private String description = "";
|
||||
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long categoryID;
|
||||
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
private Long assetNameID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* IDs 批量操作使用
|
||||
*/
|
||||
private String assetNameIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public AssetNameShowModel getShowModel()
|
||||
{
|
||||
public AssetNameShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(AssetNameShowModel showModel)
|
||||
{
|
||||
public void setShowModel(AssetNameShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getAssetName()
|
||||
{
|
||||
public String getAssetName() {
|
||||
return assetName;
|
||||
}
|
||||
|
||||
public void setAssetName(String assetName)
|
||||
{
|
||||
public void setAssetName(String assetName) {
|
||||
this.assetName = assetName;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Long getAssetNameID()
|
||||
{
|
||||
public Long getAssetNameID() {
|
||||
return assetNameID;
|
||||
}
|
||||
|
||||
public void setAssetNameID(Long assetNameID)
|
||||
{
|
||||
public void setAssetNameID(Long assetNameID) {
|
||||
this.assetNameID = assetNameID;
|
||||
}
|
||||
|
||||
public String getAssetNameIDs()
|
||||
{
|
||||
public String getAssetNameIDs() {
|
||||
return assetNameIDs;
|
||||
}
|
||||
|
||||
public void setAssetNameIDs(String assetNameIDs)
|
||||
{
|
||||
public void setAssetNameIDs(String assetNameIDs) {
|
||||
this.assetNameIDs = assetNameIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public Short getConsumable()
|
||||
{
|
||||
public Short getConsumable() {
|
||||
return consumable;
|
||||
}
|
||||
|
||||
public void setConsumable(Short consumable)
|
||||
{
|
||||
public void setConsumable(Short consumable) {
|
||||
this.consumable = consumable;
|
||||
}
|
||||
|
||||
public Long getCategoryID()
|
||||
{
|
||||
public Long getCategoryID() {
|
||||
return categoryID;
|
||||
}
|
||||
|
||||
public void setCategoryID(Long categoryID)
|
||||
{
|
||||
public void setCategoryID(Long categoryID) {
|
||||
this.categoryID = categoryID;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AssetNameShowModel implements Serializable
|
||||
{
|
||||
public class AssetNameShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class CategoryModel implements Serializable
|
||||
{
|
||||
public class CategoryModel implements Serializable {
|
||||
private CategoryShowModel showModel = new CategoryShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -17,109 +16,93 @@ public class CategoryModel implements Serializable
|
||||
* 描述信息
|
||||
*/
|
||||
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()
|
||||
{
|
||||
public CategoryShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(CategoryShowModel showModel)
|
||||
{
|
||||
public void setShowModel(CategoryShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getCategoryName()
|
||||
{
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
|
||||
public void setCategoryName(String categoryName)
|
||||
{
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Long getCategoryID()
|
||||
{
|
||||
public Long getCategoryID() {
|
||||
return categoryID;
|
||||
}
|
||||
|
||||
public void setCategoryID(Long categoryID)
|
||||
{
|
||||
public void setCategoryID(Long categoryID) {
|
||||
this.categoryID = categoryID;
|
||||
}
|
||||
|
||||
public String getCategoryIDs()
|
||||
{
|
||||
public String getCategoryIDs() {
|
||||
return categoryIDs;
|
||||
}
|
||||
|
||||
public void setCategoryIDs(String categoryIDs)
|
||||
{
|
||||
public void setCategoryIDs(String categoryIDs) {
|
||||
this.categoryIDs = categoryIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class CategoryShowModel implements Serializable
|
||||
{
|
||||
public class CategoryShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,189 +3,188 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotModel implements Serializable
|
||||
{
|
||||
private DepotShowModel showModel = new DepotShowModel();
|
||||
public class DepotModel implements Serializable {
|
||||
private DepotShowModel showModel = new DepotShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 仓库名称
|
||||
*/
|
||||
private String name = "";
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 仓库名称
|
||||
*/
|
||||
private String name = "";
|
||||
|
||||
private String address = ""; //仓库地址
|
||||
private Double warehousing; //仓储费
|
||||
private Double truckage; //搬运费
|
||||
private String address = ""; //仓库地址
|
||||
private Double warehousing; //仓储费
|
||||
private Double truckage; //搬运费
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private String sort = "";
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private String sort = "";
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private Integer type = 0;
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private Integer type = 0;
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String remark = "";
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String remark = "";
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long depotID = 0l;
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long depotID = 0l;
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String depotIDs = "";
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String depotIDs = "";
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
/**
|
||||
* UBType,UserBusiness类型
|
||||
*/
|
||||
private String UBType = "";
|
||||
/**
|
||||
* UBType,UserBusiness类型
|
||||
*/
|
||||
private String UBType = "";
|
||||
|
||||
/**
|
||||
* UBKeyId,UserBusiness关键id
|
||||
*/
|
||||
private String UBKeyId = "";
|
||||
/**
|
||||
* UBKeyId,UserBusiness关键id
|
||||
*/
|
||||
private String UBKeyId = "";
|
||||
|
||||
public DepotShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public DepotShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(DepotShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(DepotShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public Double getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
public Double getWarehousing() {
|
||||
return warehousing;
|
||||
}
|
||||
|
||||
public void setWarehousing(Double warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
public void setWarehousing(Double warehousing) {
|
||||
this.warehousing = warehousing;
|
||||
}
|
||||
|
||||
public Double getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
public Double getTruckage() {
|
||||
return truckage;
|
||||
}
|
||||
|
||||
public void setTruckage(Double truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
public void setTruckage(Double truckage) {
|
||||
this.truckage = truckage;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getDepotID() {
|
||||
return depotID;
|
||||
}
|
||||
public Long getDepotID() {
|
||||
return depotID;
|
||||
}
|
||||
|
||||
public void setDepotID(Long depotID) {
|
||||
this.depotID = depotID;
|
||||
}
|
||||
public void setDepotID(Long depotID) {
|
||||
this.depotID = depotID;
|
||||
}
|
||||
|
||||
public String getDepotIDs() {
|
||||
return depotIDs;
|
||||
}
|
||||
public String getDepotIDs() {
|
||||
return depotIDs;
|
||||
}
|
||||
|
||||
public void setDepotIDs(String depotIDs) {
|
||||
this.depotIDs = depotIDs;
|
||||
}
|
||||
public void setDepotIDs(String depotIDs) {
|
||||
this.depotIDs = depotIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotShowModel implements Serializable
|
||||
{
|
||||
public class DepotShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class FunctionsModel implements Serializable
|
||||
{
|
||||
public class FunctionsModel implements Serializable {
|
||||
private FunctionsShowModel showModel = new FunctionsShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -40,190 +39,190 @@ public class FunctionsModel implements Serializable
|
||||
* 类型
|
||||
*/
|
||||
private String Type = "";
|
||||
/**
|
||||
* 功能按钮
|
||||
*/
|
||||
private String PushBtn = "";
|
||||
/**
|
||||
* 功能按钮
|
||||
*/
|
||||
private String PushBtn = "";
|
||||
/**
|
||||
* 拥有的功能列表
|
||||
*/
|
||||
private String hasFunctions= "";
|
||||
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 FunctionsShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(FunctionsShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(FunctionsShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getPNumber() {
|
||||
return PNumber;
|
||||
}
|
||||
public String getPNumber() {
|
||||
return PNumber;
|
||||
}
|
||||
|
||||
public void setPNumber(String pNumber) {
|
||||
PNumber = pNumber;
|
||||
}
|
||||
public void setPNumber(String pNumber) {
|
||||
PNumber = pNumber;
|
||||
}
|
||||
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
public String getURL() {
|
||||
return URL;
|
||||
}
|
||||
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
public void setURL(String uRL) {
|
||||
URL = uRL;
|
||||
}
|
||||
|
||||
public Boolean getState() {
|
||||
return State;
|
||||
}
|
||||
public Boolean getState() {
|
||||
return State;
|
||||
}
|
||||
|
||||
public void setState(Boolean state) {
|
||||
State = state;
|
||||
}
|
||||
public void setState(Boolean state) {
|
||||
State = state;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return Sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
Sort = sort;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public Long getFunctionsID() {
|
||||
return functionsID;
|
||||
}
|
||||
public Long getFunctionsID() {
|
||||
return functionsID;
|
||||
}
|
||||
|
||||
public void setFunctionsID(Long functionsID) {
|
||||
this.functionsID = functionsID;
|
||||
}
|
||||
public void setFunctionsID(Long functionsID) {
|
||||
this.functionsID = functionsID;
|
||||
}
|
||||
|
||||
public String getFunctionsIDs() {
|
||||
return functionsIDs;
|
||||
}
|
||||
public String getFunctionsIDs() {
|
||||
return functionsIDs;
|
||||
}
|
||||
|
||||
public void setFunctionsIDs(String functionsIDs) {
|
||||
this.functionsIDs = functionsIDs;
|
||||
}
|
||||
public void setFunctionsIDs(String functionsIDs) {
|
||||
this.functionsIDs = functionsIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
|
||||
public String getHasFunctions() {
|
||||
return hasFunctions;
|
||||
}
|
||||
public String getHasFunctions() {
|
||||
return hasFunctions;
|
||||
}
|
||||
|
||||
public void setHasFunctions(String hasFunctions) {
|
||||
this.hasFunctions = hasFunctions;
|
||||
}
|
||||
public void setHasFunctions(String hasFunctions) {
|
||||
this.hasFunctions = hasFunctions;
|
||||
}
|
||||
|
||||
public String getPushBtn() {
|
||||
return PushBtn;
|
||||
}
|
||||
public String getPushBtn() {
|
||||
return PushBtn;
|
||||
}
|
||||
|
||||
public void setPushBtn(String pushBtn) {
|
||||
PushBtn = pushBtn;
|
||||
}
|
||||
public void setPushBtn(String pushBtn) {
|
||||
PushBtn = pushBtn;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class FunctionsShowModel implements Serializable
|
||||
{
|
||||
public class FunctionsShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class InOutItemModel implements Serializable
|
||||
{
|
||||
public class InOutItemModel implements Serializable {
|
||||
private InOutItemShowModel showModel = new InOutItemShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -48,93 +47,75 @@ public class InOutItemModel implements Serializable
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public void setShowModel(InOutItemShowModel showModel)
|
||||
{
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public InOutItemShowModel getShowModel()
|
||||
{
|
||||
public InOutItemShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
public void setShowModel(InOutItemShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setType(String type)
|
||||
{
|
||||
this.type = type;
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
this.remark = remark;
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setInOutItemID(Long inOutItemID)
|
||||
{
|
||||
this.inOutItemID = inOutItemID;
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getInOutItemID()
|
||||
{
|
||||
public Long getInOutItemID() {
|
||||
return inOutItemID;
|
||||
}
|
||||
|
||||
public void setInOutItemIDs(String inOutItemIDs)
|
||||
{
|
||||
this.inOutItemIDs = inOutItemIDs;
|
||||
public void setInOutItemID(Long inOutItemID) {
|
||||
this.inOutItemID = inOutItemID;
|
||||
}
|
||||
|
||||
public String getInOutItemIDs()
|
||||
{
|
||||
public String getInOutItemIDs() {
|
||||
return inOutItemIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
public void setInOutItemIDs(String inOutItemIDs) {
|
||||
this.inOutItemIDs = inOutItemIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
this.clientIp = clientIp;
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class InOutItemShowModel implements Serializable
|
||||
{
|
||||
public class InOutItemShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
@@ -17,15 +16,13 @@ public class InOutItemShowModel implements Serializable
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,198 +3,174 @@ 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;
|
||||
|
||||
/**
|
||||
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 LogShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public Long getLogID()
|
||||
{
|
||||
return logID;
|
||||
}
|
||||
public void setShowModel(LogShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public void setLogID(Long logID)
|
||||
{
|
||||
this.logID = logID;
|
||||
}
|
||||
public Long getLogID() {
|
||||
return logID;
|
||||
}
|
||||
|
||||
public String getLogIDs()
|
||||
{
|
||||
return logIDs;
|
||||
}
|
||||
public void setLogID(Long logID) {
|
||||
this.logID = logID;
|
||||
}
|
||||
|
||||
public void setLogIDs(String logIDs)
|
||||
{
|
||||
this.logIDs = logIDs;
|
||||
}
|
||||
public String getLogIDs() {
|
||||
return logIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
return pageSize;
|
||||
}
|
||||
public void setLogIDs(String logIDs) {
|
||||
this.logIDs = logIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
return pageNo;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
return clientIp;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public Long getUsernameID()
|
||||
{
|
||||
return usernameID;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setUsernameID(Long usernameID)
|
||||
{
|
||||
this.usernameID = usernameID;
|
||||
}
|
||||
public Long getUsernameID() {
|
||||
return usernameID;
|
||||
}
|
||||
|
||||
public String getOperation()
|
||||
{
|
||||
return operation;
|
||||
}
|
||||
public void setUsernameID(Long usernameID) {
|
||||
this.usernameID = usernameID;
|
||||
}
|
||||
|
||||
public void setOperation(String operation)
|
||||
{
|
||||
this.operation = operation;
|
||||
}
|
||||
public String getOperation() {
|
||||
return operation;
|
||||
}
|
||||
|
||||
public String getBeginTime()
|
||||
{
|
||||
if(null == beginTime || beginTime.length() == 0)
|
||||
return beginTime;
|
||||
return beginTime + " 00:00:00";
|
||||
}
|
||||
public void setOperation(String operation) {
|
||||
this.operation = operation;
|
||||
}
|
||||
|
||||
public void setBeginTime(String beginTime)
|
||||
{
|
||||
this.beginTime = beginTime;
|
||||
}
|
||||
public String getBeginTime() {
|
||||
if (null == beginTime || beginTime.length() == 0)
|
||||
return beginTime;
|
||||
return beginTime + " 00:00:00";
|
||||
}
|
||||
|
||||
public String getEndTime()
|
||||
{
|
||||
if(null == endTime || endTime.length() ==0)
|
||||
return endTime;
|
||||
return endTime + " 23:59:59";
|
||||
}
|
||||
public void setBeginTime(String beginTime) {
|
||||
this.beginTime = beginTime;
|
||||
}
|
||||
|
||||
public void setEndTime(String endTime)
|
||||
{
|
||||
this.endTime = endTime;
|
||||
}
|
||||
public String getEndTime() {
|
||||
if (null == endTime || endTime.length() == 0)
|
||||
return endTime;
|
||||
return endTime + " 23:59:59";
|
||||
}
|
||||
|
||||
public Short getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setEndTime(String endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public void setStatus(Short status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
public Short getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public String getContentdetails()
|
||||
{
|
||||
return contentdetails;
|
||||
}
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setContentdetails(String contentdetails)
|
||||
{
|
||||
this.contentdetails = contentdetails;
|
||||
}
|
||||
public String getContentdetails() {
|
||||
return contentdetails;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
return remark;
|
||||
}
|
||||
public void setContentdetails(String contentdetails) {
|
||||
this.contentdetails = contentdetails;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
this.remark = remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class LogShowModel implements Serializable
|
||||
{
|
||||
public class LogShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
@@ -17,27 +16,23 @@ public class LogShowModel implements Serializable
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap()
|
||||
{
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public void setMap(Map<String, List> map)
|
||||
{
|
||||
public void setMap(Map<String, List> map) {
|
||||
this.map = map;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class RoleModel implements Serializable
|
||||
{
|
||||
public class RoleModel implements Serializable {
|
||||
private RoleShowModel showModel = new RoleShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -12,112 +11,112 @@ public class RoleModel implements Serializable
|
||||
* 角色名称
|
||||
*/
|
||||
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 RoleShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(RoleShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(RoleShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public Long getRoleID() {
|
||||
return roleID;
|
||||
}
|
||||
public Long getRoleID() {
|
||||
return roleID;
|
||||
}
|
||||
|
||||
public void setRoleID(Long roleID) {
|
||||
this.roleID = roleID;
|
||||
}
|
||||
public void setRoleID(Long roleID) {
|
||||
this.roleID = roleID;
|
||||
}
|
||||
|
||||
public String getRoleIDs() {
|
||||
return roleIDs;
|
||||
}
|
||||
public String getRoleIDs() {
|
||||
return roleIDs;
|
||||
}
|
||||
|
||||
public void setRoleIDs(String roleIDs) {
|
||||
this.roleIDs = roleIDs;
|
||||
}
|
||||
public void setRoleIDs(String roleIDs) {
|
||||
this.roleIDs = roleIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
public void setUBType(String uBType) {
|
||||
UBType = uBType;
|
||||
}
|
||||
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String uBKeyId) {
|
||||
UBKeyId = uBKeyId;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class RoleShowModel implements Serializable
|
||||
{
|
||||
public class RoleShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,369 +5,360 @@ import java.io.InputStream;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SupplierModel implements Serializable
|
||||
{
|
||||
private SupplierShowModel showModel = new SupplierShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String supplier = "";
|
||||
public class SupplierModel implements Serializable {
|
||||
private SupplierShowModel showModel = new SupplierShowModel();
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String type = "";
|
||||
|
||||
/**
|
||||
* 联系人
|
||||
*/
|
||||
private String contacts = "";
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
private String phonenum = "";
|
||||
|
||||
/**
|
||||
* 电子邮箱
|
||||
*/
|
||||
private String email = "";
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String supplier = "";
|
||||
|
||||
/**
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String type = "";
|
||||
|
||||
/**
|
||||
* 联系人
|
||||
*/
|
||||
private String contacts = "";
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
private String phonenum = "";
|
||||
|
||||
/**
|
||||
* 电子邮箱
|
||||
*/
|
||||
private String email = "";
|
||||
|
||||
/**
|
||||
* 预付款
|
||||
*/
|
||||
*/
|
||||
private Double AdvanceIn;
|
||||
|
||||
/**
|
||||
* 期初应收
|
||||
*/
|
||||
private Double BeginNeedGet;
|
||||
|
||||
/**
|
||||
* 期初应收
|
||||
*/
|
||||
private Double BeginNeedGet;
|
||||
|
||||
/**
|
||||
* 期初应付
|
||||
*/
|
||||
*/
|
||||
private Double BeginNeedPay;
|
||||
|
||||
|
||||
/**
|
||||
* 累计应收
|
||||
*/
|
||||
*/
|
||||
private Double AllNeedGet;
|
||||
|
||||
|
||||
/**
|
||||
* 累计应付
|
||||
*/
|
||||
*/
|
||||
private Double AllNeedPay;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
private String description = "";
|
||||
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String address = "";
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate;
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
private String description = "";
|
||||
|
||||
private String UBType = ""; //UBType,UserBusiness类型
|
||||
private String fax = "";
|
||||
private String telephone = "";
|
||||
private String address = "";
|
||||
private String taxNum = "";
|
||||
private String bankName = "";
|
||||
private String accountNumber = "";
|
||||
private Double taxRate;
|
||||
|
||||
private String UBKeyId = ""; //UBKeyId,UserBusiness关键id
|
||||
private String UBType = ""; //UBType,UserBusiness类型
|
||||
|
||||
private String UBKeyId = ""; //UBKeyId,UserBusiness关键id
|
||||
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
private File supplierFile;
|
||||
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
private File supplierFile;
|
||||
|
||||
/**
|
||||
* 启用
|
||||
*/
|
||||
private Boolean enabled = false;
|
||||
|
||||
/**
|
||||
* 供应商ID
|
||||
*/
|
||||
private Long supplierID = 0l;
|
||||
|
||||
/**
|
||||
* 供应商IDs 批量操作使用
|
||||
*/
|
||||
private String supplierIDs = "";
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
/**
|
||||
|
||||
/**
|
||||
* 供应商ID
|
||||
*/
|
||||
private Long supplierID = 0l;
|
||||
|
||||
/**
|
||||
* 供应商IDs 批量操作使用
|
||||
*/
|
||||
private String supplierIDs = "";
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
private String browserType = ""; //浏览器类型
|
||||
private String fileName = ""; //文件名称
|
||||
private InputStream excelStream; //输入流,导出excel文件
|
||||
private String browserType = ""; //浏览器类型
|
||||
private String fileName = ""; //文件名称
|
||||
private InputStream excelStream; //输入流,导出excel文件
|
||||
|
||||
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 Double getAdvanceIn() {
|
||||
return AdvanceIn;
|
||||
}
|
||||
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
AdvanceIn = advanceIn;
|
||||
}
|
||||
|
||||
public void setBeginNeedGet(Double beginNeedGet)
|
||||
{
|
||||
BeginNeedGet = beginNeedGet;
|
||||
public SupplierShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public Double getBeginNeedGet()
|
||||
{
|
||||
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 Double getAdvanceIn() {
|
||||
return AdvanceIn;
|
||||
}
|
||||
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
AdvanceIn = advanceIn;
|
||||
}
|
||||
|
||||
public Double getBeginNeedGet() {
|
||||
return BeginNeedGet;
|
||||
}
|
||||
|
||||
public void setBeginNeedPay(Double beginNeedPay)
|
||||
{
|
||||
BeginNeedPay = beginNeedPay;
|
||||
public void setBeginNeedGet(Double beginNeedGet) {
|
||||
BeginNeedGet = beginNeedGet;
|
||||
}
|
||||
|
||||
public Double getBeginNeedPay()
|
||||
{
|
||||
public Double getBeginNeedPay() {
|
||||
return BeginNeedPay;
|
||||
}
|
||||
|
||||
public void setAllNeedGet(Double allNeedGet)
|
||||
{
|
||||
AllNeedGet = allNeedGet;
|
||||
public void setBeginNeedPay(Double beginNeedPay) {
|
||||
BeginNeedPay = beginNeedPay;
|
||||
}
|
||||
|
||||
public Double getAllNeedGet()
|
||||
{
|
||||
public Double getAllNeedGet() {
|
||||
return AllNeedGet;
|
||||
}
|
||||
|
||||
public void setAllNeedPay(Double allNeedPay)
|
||||
{
|
||||
public void setAllNeedGet(Double allNeedGet) {
|
||||
AllNeedGet = allNeedGet;
|
||||
}
|
||||
|
||||
public Double getAllNeedPay() {
|
||||
return AllNeedPay;
|
||||
}
|
||||
|
||||
public void setAllNeedPay(Double allNeedPay) {
|
||||
AllNeedPay = allNeedPay;
|
||||
}
|
||||
|
||||
public Double getAllNeedPay()
|
||||
{
|
||||
return AllNeedPay;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
public Long getSupplierID() {
|
||||
return supplierID;
|
||||
}
|
||||
|
||||
public Long getSupplierID() {
|
||||
return supplierID;
|
||||
}
|
||||
public void setSupplierID(Long supplierID) {
|
||||
this.supplierID = supplierID;
|
||||
}
|
||||
|
||||
public void setSupplierID(Long supplierID) {
|
||||
this.supplierID = supplierID;
|
||||
}
|
||||
public String getSupplierIDs() {
|
||||
return supplierIDs;
|
||||
}
|
||||
|
||||
public String getSupplierIDs() {
|
||||
return supplierIDs;
|
||||
}
|
||||
public void setSupplierIDs(String supplierIDs) {
|
||||
this.supplierIDs = supplierIDs;
|
||||
}
|
||||
|
||||
public void setSupplierIDs(String supplierIDs) {
|
||||
this.supplierIDs = supplierIDs;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return telephone;
|
||||
}
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
|
||||
public String getTaxNum() {
|
||||
return taxNum;
|
||||
}
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
|
||||
public void setTaxNum(String taxNum) {
|
||||
this.taxNum = taxNum;
|
||||
}
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
|
||||
public String getAccountNumber() {
|
||||
return accountNumber;
|
||||
}
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
|
||||
public void setAccountNumber(String accountNumber) {
|
||||
this.accountNumber = accountNumber;
|
||||
}
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
|
||||
public Double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public void setTaxRate(Double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
|
||||
public String getUBType() {
|
||||
return UBType;
|
||||
}
|
||||
public void setUBType(String UBType) {
|
||||
this.UBType = UBType;
|
||||
}
|
||||
|
||||
public void setUBType(String UBType) {
|
||||
this.UBType = UBType;
|
||||
}
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
|
||||
public String getUBKeyId() {
|
||||
return UBKeyId;
|
||||
}
|
||||
public void setUBKeyId(String UBKeyId) {
|
||||
this.UBKeyId = UBKeyId;
|
||||
}
|
||||
|
||||
public void setUBKeyId(String UBKeyId) {
|
||||
this.UBKeyId = UBKeyId;
|
||||
}
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
public File getSupplierFile() {
|
||||
return supplierFile;
|
||||
}
|
||||
|
||||
public File getSupplierFile() {
|
||||
return supplierFile;
|
||||
}
|
||||
|
||||
public void setSupplierFile(File supplierFile) {
|
||||
this.supplierFile = supplierFile;
|
||||
}
|
||||
public void setSupplierFile(File supplierFile) {
|
||||
this.supplierFile = supplierFile;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,37 +6,34 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SupplierShowModel implements Serializable
|
||||
{
|
||||
public class SupplierShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SystemConfigModel implements Serializable
|
||||
{
|
||||
public class SystemConfigModel implements Serializable {
|
||||
private SystemConfigShowModel showModel = new SystemConfigShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
private Long id = 0l;
|
||||
/**
|
||||
* ======开始接受页面参数=================
|
||||
**/
|
||||
private Long id = 0l;
|
||||
private String type = "";
|
||||
private String name = "";
|
||||
private String value = "";
|
||||
private String description = "";
|
||||
private String name = "";
|
||||
private String value = "";
|
||||
private String description = "";
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public SystemConfigShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public SystemConfigShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(SystemConfigShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(SystemConfigShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SystemConfigShowModel implements Serializable
|
||||
{
|
||||
public class SystemConfigShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,96 +3,95 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UnitModel implements Serializable
|
||||
{
|
||||
private DepotShowModel showModel = new DepotShowModel();
|
||||
public class UnitModel implements Serializable {
|
||||
private DepotShowModel showModel = new DepotShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String UName = "";
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String UName = "";
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
private Long unitID = 0l;
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
private Long unitID = 0l;
|
||||
|
||||
/**
|
||||
* IDs 批量操作使用
|
||||
*/
|
||||
private String unitIDs = "";
|
||||
/**
|
||||
* IDs 批量操作使用
|
||||
*/
|
||||
private String unitIDs = "";
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
|
||||
public DepotShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public DepotShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(DepotShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(DepotShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getUName() {
|
||||
return UName;
|
||||
}
|
||||
public String getUName() {
|
||||
return UName;
|
||||
}
|
||||
|
||||
public void setUName(String UName) {
|
||||
this.UName = UName;
|
||||
}
|
||||
public void setUName(String UName) {
|
||||
this.UName = UName;
|
||||
}
|
||||
|
||||
public Long getUnitID() {
|
||||
return unitID;
|
||||
}
|
||||
public Long getUnitID() {
|
||||
return unitID;
|
||||
}
|
||||
|
||||
public void setUnitID(Long unitID) {
|
||||
this.unitID = unitID;
|
||||
}
|
||||
public void setUnitID(Long unitID) {
|
||||
this.unitID = unitID;
|
||||
}
|
||||
|
||||
public String getUnitIDs() {
|
||||
return unitIDs;
|
||||
}
|
||||
public String getUnitIDs() {
|
||||
return unitIDs;
|
||||
}
|
||||
|
||||
public void setUnitIDs(String unitIDs) {
|
||||
this.unitIDs = unitIDs;
|
||||
}
|
||||
public void setUnitIDs(String unitIDs) {
|
||||
this.unitIDs = unitIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UnitShowModel implements Serializable
|
||||
{
|
||||
public class UnitShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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,8 +3,7 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UserBusinessModel implements Serializable
|
||||
{
|
||||
public class UserBusinessModel implements Serializable {
|
||||
private UserBusinessShowModel showModel = new UserBusinessShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -12,121 +11,121 @@ public class UserBusinessModel implements Serializable
|
||||
* 角色名称
|
||||
*/
|
||||
private String Type = "";
|
||||
|
||||
|
||||
/**
|
||||
* 主ID
|
||||
*/
|
||||
private String KeyId = "";
|
||||
|
||||
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private String Value = "";
|
||||
|
||||
private String BtnStr = "";
|
||||
|
||||
private String BtnStr = "";
|
||||
|
||||
/**
|
||||
* 分类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 UserBusinessShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(UserBusinessShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(UserBusinessShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public String getKeyId() {
|
||||
return KeyId;
|
||||
}
|
||||
public String getKeyId() {
|
||||
return KeyId;
|
||||
}
|
||||
|
||||
public void setKeyId(String keyId) {
|
||||
KeyId = keyId;
|
||||
}
|
||||
public void setKeyId(String keyId) {
|
||||
KeyId = keyId;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return Value;
|
||||
}
|
||||
public String getValue() {
|
||||
return Value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
Value = value;
|
||||
}
|
||||
public void setValue(String value) {
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public Long getUserBusinessID() {
|
||||
return userBusinessID;
|
||||
}
|
||||
public Long getUserBusinessID() {
|
||||
return userBusinessID;
|
||||
}
|
||||
|
||||
public void setUserBusinessID(Long userBusinessID) {
|
||||
this.userBusinessID = userBusinessID;
|
||||
}
|
||||
public void setUserBusinessID(Long userBusinessID) {
|
||||
this.userBusinessID = userBusinessID;
|
||||
}
|
||||
|
||||
public String getUserBusinessIDs() {
|
||||
return userBusinessIDs;
|
||||
}
|
||||
public String getUserBusinessIDs() {
|
||||
return userBusinessIDs;
|
||||
}
|
||||
|
||||
public void setUserBusinessIDs(String userBusinessIDs) {
|
||||
this.userBusinessIDs = userBusinessIDs;
|
||||
}
|
||||
public void setUserBusinessIDs(String userBusinessIDs) {
|
||||
this.userBusinessIDs = userBusinessIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getBtnStr() {
|
||||
return BtnStr;
|
||||
}
|
||||
public String getBtnStr() {
|
||||
return BtnStr;
|
||||
}
|
||||
|
||||
public void setBtnStr(String btnStr) {
|
||||
BtnStr = btnStr;
|
||||
}
|
||||
public void setBtnStr(String btnStr) {
|
||||
BtnStr = btnStr;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UserBusinessShowModel implements Serializable
|
||||
{
|
||||
public class UserBusinessShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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,253 +3,218 @@ 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 class UserModel implements Serializable {
|
||||
private UserShowModel showModel = new UserShowModel();
|
||||
|
||||
public String getLoginame()
|
||||
{
|
||||
return loginame;
|
||||
}
|
||||
/*+++++用户登录开始+++++++++++*/
|
||||
private String username = "";
|
||||
private String password = "";
|
||||
/*+++++用户登录结束+++++++++++*/
|
||||
|
||||
public void setLoginame(String loginame)
|
||||
{
|
||||
this.loginame = loginame;
|
||||
}
|
||||
/**
|
||||
* ===============以下处理用户管理部分===============
|
||||
*/
|
||||
/**
|
||||
* 用户登录名称
|
||||
*/
|
||||
private String loginame;
|
||||
|
||||
public String getPosition()
|
||||
{
|
||||
return position;
|
||||
}
|
||||
/**
|
||||
* 职位
|
||||
*/
|
||||
private String position;
|
||||
|
||||
public void setPosition(String position)
|
||||
{
|
||||
this.position = position;
|
||||
}
|
||||
/**
|
||||
* 部门
|
||||
*/
|
||||
private String department;
|
||||
|
||||
public String getDepartment()
|
||||
{
|
||||
return department;
|
||||
}
|
||||
/**
|
||||
* 电子邮件
|
||||
*/
|
||||
private String email;
|
||||
|
||||
public void setDepartment(String department)
|
||||
{
|
||||
this.department = department;
|
||||
}
|
||||
/**
|
||||
* 电话号码
|
||||
*/
|
||||
private String phonenum;
|
||||
|
||||
public String getEmail()
|
||||
{
|
||||
return email;
|
||||
}
|
||||
/**
|
||||
* 是否管理员 0 ==管理员 1==非管理员
|
||||
*/
|
||||
private Short ismanager = 1;
|
||||
|
||||
public void setEmail(String email)
|
||||
{
|
||||
this.email = email;
|
||||
}
|
||||
/**
|
||||
* 用户描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
public String getPhonenum()
|
||||
{
|
||||
return phonenum;
|
||||
}
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userID = 0l;
|
||||
|
||||
public void setPhonenum(String phonenum)
|
||||
{
|
||||
this.phonenum = phonenum;
|
||||
}
|
||||
/**
|
||||
* 用户IDs 批量操作使用
|
||||
*/
|
||||
private String userIDs = "";
|
||||
|
||||
public Short getIsmanager()
|
||||
{
|
||||
return ismanager;
|
||||
}
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
public void setIsmanager(Short ismanager)
|
||||
{
|
||||
this.ismanager = ismanager;
|
||||
}
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return description;
|
||||
}
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
/**
|
||||
* 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称
|
||||
*/
|
||||
private int checkFlag = 0;
|
||||
|
||||
public Long getUserID()
|
||||
{
|
||||
return userID;
|
||||
}
|
||||
private String orgpwd = "";
|
||||
|
||||
public void setUserID(Long userID)
|
||||
{
|
||||
this.userID = userID;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public String getUserIDs()
|
||||
{
|
||||
return userIDs;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setUserIDs(String userIDs)
|
||||
{
|
||||
this.userIDs = userIDs;
|
||||
}
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
return pageSize;
|
||||
}
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
return pageNo;
|
||||
}
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public UserShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public int getCheckFlag()
|
||||
{
|
||||
return checkFlag;
|
||||
}
|
||||
public void setShowModel(UserShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public void setCheckFlag(int checkFlag)
|
||||
{
|
||||
this.checkFlag = checkFlag;
|
||||
}
|
||||
public String getLoginame() {
|
||||
return loginame;
|
||||
}
|
||||
|
||||
public String getOrgpwd()
|
||||
{
|
||||
return orgpwd;
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
||||
public void setOrgpwd(String orgpwd)
|
||||
{
|
||||
this.orgpwd = orgpwd;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class UserShowModel implements Serializable
|
||||
{
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
public class UserShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
return msgTip;
|
||||
}
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,25 +3,26 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountHeadModel implements Serializable
|
||||
{
|
||||
public class AccountHeadModel implements Serializable {
|
||||
private AccountHeadShowModel showModel = new AccountHeadShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* ======开始接受页面参数=================
|
||||
**/
|
||||
private String Type;
|
||||
private Long OrganId;
|
||||
private Long HandsPersonId;
|
||||
private Long HandsPersonId;
|
||||
private Double ChangeAmount;
|
||||
private Double TotalPrice;
|
||||
private Long AccountId;
|
||||
private String BillNo;
|
||||
private String BillTime;
|
||||
private String BillTime;
|
||||
private String Remark;
|
||||
private String BeginTime; //查询开始时间
|
||||
private String EndTime; //查询结束时间
|
||||
private String MonthTime; //查询月份
|
||||
|
||||
private String supplierId; //单位Id,用于查询单位的收付款
|
||||
|
||||
private String supplierId; //单位Id,用于查询单位的收付款
|
||||
|
||||
private String supType; //单位类型,客户、供应商
|
||||
/**
|
||||
@@ -49,192 +50,157 @@ public class AccountHeadModel implements Serializable
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public void setShowModel(AccountHeadShowModel showModel)
|
||||
{
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public AccountHeadShowModel getShowModel()
|
||||
{
|
||||
public AccountHeadShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setType(String type)
|
||||
{
|
||||
Type = type;
|
||||
public void setShowModel(AccountHeadShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setOrganId(Long organId)
|
||||
{
|
||||
OrganId = organId;
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public Long getOrganId()
|
||||
{
|
||||
public Long getOrganId() {
|
||||
return OrganId;
|
||||
}
|
||||
|
||||
public void setHandsPersonId(Long handsPersonId)
|
||||
{
|
||||
HandsPersonId = handsPersonId;
|
||||
public void setOrganId(Long organId) {
|
||||
OrganId = organId;
|
||||
}
|
||||
|
||||
public Long getHandsPersonId()
|
||||
{
|
||||
public Long getHandsPersonId() {
|
||||
return HandsPersonId;
|
||||
}
|
||||
|
||||
public void setChangeAmount(Double changeAmount)
|
||||
{
|
||||
ChangeAmount = changeAmount;
|
||||
public void setHandsPersonId(Long handsPersonId) {
|
||||
HandsPersonId = handsPersonId;
|
||||
}
|
||||
|
||||
public Double getChangeAmount()
|
||||
{
|
||||
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 void setChangeAmount(Double changeAmount) {
|
||||
ChangeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public Long getAccountId()
|
||||
{
|
||||
public Double getTotalPrice() {
|
||||
return TotalPrice;
|
||||
}
|
||||
|
||||
public void setTotalPrice(Double totalPrice) {
|
||||
TotalPrice = totalPrice;
|
||||
}
|
||||
|
||||
public Long getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
|
||||
public void setBillNo(String billNo)
|
||||
{
|
||||
BillNo = billNo;
|
||||
public void setAccountId(Long accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
|
||||
public String getBillNo()
|
||||
{
|
||||
public String getBillNo() {
|
||||
return BillNo;
|
||||
}
|
||||
|
||||
public void setBillTime(String billTime)
|
||||
{
|
||||
BillTime = billTime;
|
||||
public void setBillNo(String billNo) {
|
||||
BillNo = billNo;
|
||||
}
|
||||
|
||||
public String getBillTime()
|
||||
{
|
||||
public String getBillTime() {
|
||||
return BillTime;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public void setBillTime(String billTime) {
|
||||
BillTime = billTime;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setBeginTime(String beginTime)
|
||||
{
|
||||
BeginTime = beginTime;
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public String getBeginTime()
|
||||
{
|
||||
public String getBeginTime() {
|
||||
return BeginTime;
|
||||
}
|
||||
|
||||
public void setEndTime(String endTime)
|
||||
{
|
||||
EndTime = endTime;
|
||||
public void setBeginTime(String beginTime) {
|
||||
BeginTime = beginTime;
|
||||
}
|
||||
|
||||
public String getEndTime()
|
||||
{
|
||||
public String getEndTime() {
|
||||
return EndTime;
|
||||
}
|
||||
|
||||
public void setMonthTime(String monthTime)
|
||||
{
|
||||
MonthTime = monthTime;
|
||||
public void setEndTime(String endTime) {
|
||||
EndTime = endTime;
|
||||
}
|
||||
|
||||
public String getMonthTime()
|
||||
{
|
||||
public String getMonthTime() {
|
||||
return MonthTime;
|
||||
}
|
||||
|
||||
public void setAccountHeadID(Long accountHeadID)
|
||||
{
|
||||
this.accountHeadID = accountHeadID;
|
||||
public void setMonthTime(String monthTime) {
|
||||
MonthTime = monthTime;
|
||||
}
|
||||
|
||||
public Long getAccountHeadID()
|
||||
{
|
||||
public Long getAccountHeadID() {
|
||||
return accountHeadID;
|
||||
}
|
||||
|
||||
public void setAccountHeadIDs(String accountHeadIDs)
|
||||
{
|
||||
this.accountHeadIDs = accountHeadIDs;
|
||||
public void setAccountHeadID(Long accountHeadID) {
|
||||
this.accountHeadID = accountHeadID;
|
||||
}
|
||||
|
||||
public String getAccountHeadIDs()
|
||||
{
|
||||
public String getAccountHeadIDs() {
|
||||
return accountHeadIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
public void setAccountHeadIDs(String accountHeadIDs) {
|
||||
this.accountHeadIDs = accountHeadIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
this.clientIp = clientIp;
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public String getSupplierId() {
|
||||
return supplierId;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setSupplierId(String supplierId) {
|
||||
this.supplierId = supplierId;
|
||||
}
|
||||
public String getSupplierId() {
|
||||
return supplierId;
|
||||
}
|
||||
|
||||
public void setSupplierId(String supplierId) {
|
||||
this.supplierId = supplierId;
|
||||
}
|
||||
|
||||
public String getSupType() {
|
||||
return supType;
|
||||
|
||||
@@ -6,8 +6,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountHeadShowModel implements Serializable
|
||||
{
|
||||
public class AccountHeadShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
@@ -17,15 +16,13 @@ public class AccountHeadShowModel implements Serializable
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,11 +4,12 @@ import java.io.InputStream;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountItemModel implements Serializable
|
||||
{
|
||||
public class AccountItemModel implements Serializable {
|
||||
private AccountItemShowModel showModel = new AccountItemShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
/**
|
||||
* ======开始接受页面参数=================
|
||||
**/
|
||||
private Long HeaderId;
|
||||
private Long AccountId;
|
||||
private Long InOutItemId;
|
||||
@@ -58,106 +59,86 @@ public class AccountItemModel implements Serializable
|
||||
*/
|
||||
private InputStream excelStream;
|
||||
|
||||
public void setShowModel(AccountItemShowModel showModel)
|
||||
{
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public AccountItemShowModel getShowModel()
|
||||
{
|
||||
public AccountItemShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setHeaderId(Long headerId)
|
||||
{
|
||||
HeaderId = headerId;
|
||||
public void setShowModel(AccountItemShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public Long getHeaderId()
|
||||
{
|
||||
public Long getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
|
||||
public void setAccountId(Long accountId)
|
||||
{
|
||||
AccountId = accountId;
|
||||
public void setHeaderId(Long headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
|
||||
public Long getAccountId()
|
||||
{
|
||||
public Long getAccountId() {
|
||||
return AccountId;
|
||||
}
|
||||
|
||||
public void setInOutItemId(Long inOutItemId)
|
||||
{
|
||||
InOutItemId = inOutItemId;
|
||||
public void setAccountId(Long accountId) {
|
||||
AccountId = accountId;
|
||||
}
|
||||
|
||||
public Long getInOutItemId()
|
||||
{
|
||||
public Long getInOutItemId() {
|
||||
return InOutItemId;
|
||||
}
|
||||
|
||||
public void setEachAmount(Double eachAmount)
|
||||
{
|
||||
EachAmount = eachAmount;
|
||||
public void setInOutItemId(Long inOutItemId) {
|
||||
InOutItemId = inOutItemId;
|
||||
}
|
||||
|
||||
public Double getEachAmount()
|
||||
{
|
||||
public Double getEachAmount() {
|
||||
return EachAmount;
|
||||
}
|
||||
|
||||
public void setRemark(String remark)
|
||||
{
|
||||
Remark = remark;
|
||||
public void setEachAmount(Double eachAmount) {
|
||||
EachAmount = eachAmount;
|
||||
}
|
||||
|
||||
public String getRemark()
|
||||
{
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setInserted(String inserted)
|
||||
{
|
||||
Inserted = inserted;
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public String getInserted()
|
||||
{
|
||||
public String getInserted() {
|
||||
return Inserted;
|
||||
}
|
||||
|
||||
public void setDeleted(String deleted)
|
||||
{
|
||||
Deleted = deleted;
|
||||
public void setInserted(String inserted) {
|
||||
Inserted = inserted;
|
||||
}
|
||||
|
||||
public String getDeleted()
|
||||
{
|
||||
public String getDeleted() {
|
||||
return Deleted;
|
||||
}
|
||||
|
||||
public void setUpdated(String updated)
|
||||
{
|
||||
Updated = updated;
|
||||
public void setDeleted(String deleted) {
|
||||
Deleted = deleted;
|
||||
}
|
||||
|
||||
public String getUpdated()
|
||||
{
|
||||
public String getUpdated() {
|
||||
return Updated;
|
||||
}
|
||||
|
||||
public void setHeadIds(String headIds)
|
||||
{
|
||||
HeadIds = headIds;
|
||||
public void setUpdated(String updated) {
|
||||
Updated = updated;
|
||||
}
|
||||
|
||||
public String getHeadIds()
|
||||
{
|
||||
public String getHeadIds() {
|
||||
return HeadIds;
|
||||
}
|
||||
|
||||
public void setHeadIds(String headIds) {
|
||||
HeadIds = headIds;
|
||||
}
|
||||
|
||||
public String getListType() {
|
||||
return ListType;
|
||||
}
|
||||
@@ -166,95 +147,75 @@ public class AccountItemModel implements Serializable
|
||||
ListType = listType;
|
||||
}
|
||||
|
||||
public void setMonthTime(String monthTime)
|
||||
{
|
||||
MonthTime = monthTime;
|
||||
}
|
||||
|
||||
public String getMonthTime()
|
||||
{
|
||||
public String getMonthTime() {
|
||||
return MonthTime;
|
||||
}
|
||||
|
||||
public void setBrowserType(String browserType)
|
||||
{
|
||||
this.browserType = browserType;
|
||||
public void setMonthTime(String monthTime) {
|
||||
MonthTime = monthTime;
|
||||
}
|
||||
|
||||
public String getBrowserType()
|
||||
{
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName)
|
||||
{
|
||||
this.fileName = fileName;
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
|
||||
public String getFileName()
|
||||
{
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setAccountItemID(Long accountItemID)
|
||||
{
|
||||
this.accountItemID = accountItemID;
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public Long getAccountItemID()
|
||||
{
|
||||
public Long getAccountItemID() {
|
||||
return accountItemID;
|
||||
}
|
||||
|
||||
public void setAccountItemIDs(String accountItemIDs)
|
||||
{
|
||||
this.accountItemIDs = accountItemIDs;
|
||||
public void setAccountItemID(Long accountItemID) {
|
||||
this.accountItemID = accountItemID;
|
||||
}
|
||||
|
||||
public String getAccountItemIDs()
|
||||
{
|
||||
public String getAccountItemIDs() {
|
||||
return accountItemIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize)
|
||||
{
|
||||
this.pageSize = pageSize;
|
||||
public void setAccountItemIDs(String accountItemIDs) {
|
||||
this.accountItemIDs = accountItemIDs;
|
||||
}
|
||||
|
||||
public int getPageSize()
|
||||
{
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo)
|
||||
{
|
||||
this.pageNo = pageNo;
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo()
|
||||
{
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp)
|
||||
{
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getClientIp()
|
||||
{
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setExcelStream(InputStream excelStream)
|
||||
{
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
|
||||
public InputStream getExcelStream()
|
||||
{
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class AccountItemShowModel implements Serializable
|
||||
{
|
||||
public class AccountItemShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,37 +6,34 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotHeadShowModel implements Serializable
|
||||
{
|
||||
public class DepotHeadShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotItemModel implements Serializable
|
||||
{
|
||||
public class DepotItemModel implements Serializable {
|
||||
private DepotItemShowModel showModel = new DepotItemShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
private Long HeaderId;
|
||||
private Long MaterialId;
|
||||
private String MUnit; //计量单位
|
||||
private Double OperNumber;
|
||||
private Double BasicNumber;
|
||||
private Double UnitPrice;
|
||||
private Double TaxUnitPrice; //含税单价
|
||||
private Double AllPrice;
|
||||
private String Remark = "";
|
||||
private String Img = "";
|
||||
/**
|
||||
* ======开始接受页面参数=================
|
||||
**/
|
||||
private Long HeaderId;
|
||||
private Long MaterialId;
|
||||
private String MUnit; //计量单位
|
||||
private Double OperNumber;
|
||||
private Double BasicNumber;
|
||||
private Double UnitPrice;
|
||||
private Double TaxUnitPrice; //含税单价
|
||||
private Double AllPrice;
|
||||
private String Remark = "";
|
||||
private String Img = "";
|
||||
|
||||
private Long DepotId;
|
||||
private Long AnotherDepotId;
|
||||
private Double TaxRate;
|
||||
private Double TaxMoney;
|
||||
private Double TaxLastMoney;
|
||||
private String OtherField1;
|
||||
private String OtherField2;
|
||||
private String OtherField3;
|
||||
private String OtherField4;
|
||||
private String OtherField5;
|
||||
private String MType;
|
||||
|
||||
private String Inserted = ""; //json插入记录
|
||||
private String Deleted = ""; //json删除记录
|
||||
private String Updated = ""; //json修改记录
|
||||
|
||||
private String HeadIds = ""; //表头集合列表
|
||||
private String MaterialIds = ""; //材料列表
|
||||
private String MonthTime = ""; //月份
|
||||
private Integer ProjectId = null;
|
||||
private String browserType = "";
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String fileName = "";
|
||||
private Long DepotId;
|
||||
private Long AnotherDepotId;
|
||||
private Double TaxRate;
|
||||
private Double TaxMoney;
|
||||
private Double TaxLastMoney;
|
||||
private String OtherField1;
|
||||
private String OtherField2;
|
||||
private String OtherField3;
|
||||
private String OtherField4;
|
||||
private String OtherField5;
|
||||
private String MType;
|
||||
|
||||
private String Inserted = ""; //json插入记录
|
||||
private String Deleted = ""; //json删除记录
|
||||
private String Updated = ""; //json修改记录
|
||||
|
||||
private String HeadIds = ""; //表头集合列表
|
||||
private String MaterialIds = ""; //材料列表
|
||||
private String MonthTime = ""; //月份
|
||||
private Integer ProjectId = null;
|
||||
private String browserType = "";
|
||||
/**
|
||||
* 文件名称
|
||||
*/
|
||||
private String fileName = "";
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long depotItemID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String depotItemIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 800;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 输入流,导出excel文件
|
||||
*/
|
||||
private InputStream excelStream;
|
||||
private InputStream excelStream;
|
||||
|
||||
private String mpList = ""; //商品属性
|
||||
private String mpList = ""; //商品属性
|
||||
|
||||
public DepotItemShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public DepotItemShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(DepotItemShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(DepotItemShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public Long getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
public Long getHeaderId() {
|
||||
return HeaderId;
|
||||
}
|
||||
|
||||
public void setHeaderId(Long headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
public void setHeaderId(Long headerId) {
|
||||
HeaderId = headerId;
|
||||
}
|
||||
|
||||
public Long getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
public Long getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
|
||||
public void setMaterialId(Long materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
public void setMaterialId(Long materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
|
||||
public String getMUnit() {
|
||||
return MUnit;
|
||||
}
|
||||
public String getMUnit() {
|
||||
return MUnit;
|
||||
}
|
||||
|
||||
public void setMUnit(String MUnit) {
|
||||
this.MUnit = MUnit;
|
||||
}
|
||||
public void setMUnit(String MUnit) {
|
||||
this.MUnit = MUnit;
|
||||
}
|
||||
|
||||
public Double getTaxUnitPrice() {
|
||||
return TaxUnitPrice;
|
||||
}
|
||||
public Double getTaxUnitPrice() {
|
||||
return TaxUnitPrice;
|
||||
}
|
||||
|
||||
public void setTaxUnitPrice(Double taxUnitPrice) {
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
}
|
||||
public void setTaxUnitPrice(Double taxUnitPrice) {
|
||||
TaxUnitPrice = taxUnitPrice;
|
||||
}
|
||||
|
||||
public Double getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
public Double getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
|
||||
public void setOperNumber(Double operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
public void setOperNumber(Double operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
|
||||
public Double getBasicNumber() {
|
||||
return BasicNumber;
|
||||
}
|
||||
public Double getBasicNumber() {
|
||||
return BasicNumber;
|
||||
}
|
||||
|
||||
public void setBasicNumber(Double basicNumber) {
|
||||
BasicNumber = basicNumber;
|
||||
}
|
||||
public void setBasicNumber(Double basicNumber) {
|
||||
BasicNumber = basicNumber;
|
||||
}
|
||||
|
||||
public Double getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
public Double getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
|
||||
public void setUnitPrice(Double unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
public void setUnitPrice(Double unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
|
||||
public Double getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
public Double getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(Double allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
public void setAllPrice(Double allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public String getImg() {
|
||||
return Img;
|
||||
}
|
||||
public String getImg() {
|
||||
return Img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
Img = img;
|
||||
}
|
||||
public void setImg(String img) {
|
||||
Img = img;
|
||||
}
|
||||
|
||||
public Long getDepotItemID() {
|
||||
return depotItemID;
|
||||
}
|
||||
public Long getDepotItemID() {
|
||||
return depotItemID;
|
||||
}
|
||||
|
||||
public void setDepotItemID(Long depotItemID) {
|
||||
this.depotItemID = depotItemID;
|
||||
}
|
||||
public void setDepotItemID(Long depotItemID) {
|
||||
this.depotItemID = depotItemID;
|
||||
}
|
||||
|
||||
public String getDepotItemIDs() {
|
||||
return depotItemIDs;
|
||||
}
|
||||
public String getDepotItemIDs() {
|
||||
return depotItemIDs;
|
||||
}
|
||||
|
||||
public void setDepotItemIDs(String depotItemIDs) {
|
||||
this.depotItemIDs = depotItemIDs;
|
||||
}
|
||||
public void setDepotItemIDs(String depotItemIDs) {
|
||||
this.depotItemIDs = depotItemIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public String getInserted() {
|
||||
return Inserted;
|
||||
}
|
||||
public String getInserted() {
|
||||
return Inserted;
|
||||
}
|
||||
|
||||
public void setInserted(String inserted) {
|
||||
Inserted = inserted;
|
||||
}
|
||||
public void setInserted(String inserted) {
|
||||
Inserted = inserted;
|
||||
}
|
||||
|
||||
public String getDeleted() {
|
||||
return Deleted;
|
||||
}
|
||||
public String getDeleted() {
|
||||
return Deleted;
|
||||
}
|
||||
|
||||
public void setDeleted(String deleted) {
|
||||
Deleted = deleted;
|
||||
}
|
||||
public void setDeleted(String deleted) {
|
||||
Deleted = deleted;
|
||||
}
|
||||
|
||||
public String getUpdated() {
|
||||
return Updated;
|
||||
}
|
||||
public String getUpdated() {
|
||||
return Updated;
|
||||
}
|
||||
|
||||
public void setUpdated(String updated) {
|
||||
Updated = updated;
|
||||
}
|
||||
public void setUpdated(String updated) {
|
||||
Updated = updated;
|
||||
}
|
||||
|
||||
public String getHeadIds() {
|
||||
return HeadIds;
|
||||
}
|
||||
public String getHeadIds() {
|
||||
return HeadIds;
|
||||
}
|
||||
|
||||
public void setHeadIds(String headIds) {
|
||||
HeadIds = headIds;
|
||||
}
|
||||
public void setHeadIds(String headIds) {
|
||||
HeadIds = headIds;
|
||||
}
|
||||
|
||||
public String getMonthTime() {
|
||||
return MonthTime;
|
||||
}
|
||||
public String getMonthTime() {
|
||||
return MonthTime;
|
||||
}
|
||||
|
||||
public void setMonthTime(String monthTime) {
|
||||
MonthTime = monthTime;
|
||||
}
|
||||
public void setMonthTime(String monthTime) {
|
||||
MonthTime = monthTime;
|
||||
}
|
||||
|
||||
public Integer getProjectId() {
|
||||
return ProjectId;
|
||||
}
|
||||
public Integer getProjectId() {
|
||||
return ProjectId;
|
||||
}
|
||||
|
||||
public void setProjectId(Integer projectId) {
|
||||
ProjectId = projectId;
|
||||
}
|
||||
public void setProjectId(Integer projectId) {
|
||||
ProjectId = projectId;
|
||||
}
|
||||
|
||||
public String getMaterialIds() {
|
||||
return MaterialIds;
|
||||
}
|
||||
public String getMaterialIds() {
|
||||
return MaterialIds;
|
||||
}
|
||||
|
||||
public void setMaterialIds(String materialIds) {
|
||||
MaterialIds = materialIds;
|
||||
}
|
||||
public void setMaterialIds(String materialIds) {
|
||||
MaterialIds = materialIds;
|
||||
}
|
||||
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
|
||||
public Long getDepotId() {
|
||||
return DepotId;
|
||||
}
|
||||
public Long getDepotId() {
|
||||
return DepotId;
|
||||
}
|
||||
|
||||
public void setDepotId(Long depotId) {
|
||||
DepotId = depotId;
|
||||
}
|
||||
public void setDepotId(Long depotId) {
|
||||
DepotId = depotId;
|
||||
}
|
||||
|
||||
public Long getAnotherDepotId() {
|
||||
return AnotherDepotId;
|
||||
}
|
||||
public Long getAnotherDepotId() {
|
||||
return AnotherDepotId;
|
||||
}
|
||||
|
||||
public void setAnotherDepotId(Long anotherDepotId) {
|
||||
AnotherDepotId = anotherDepotId;
|
||||
}
|
||||
public void setAnotherDepotId(Long anotherDepotId) {
|
||||
AnotherDepotId = anotherDepotId;
|
||||
}
|
||||
|
||||
public Double getTaxRate() {
|
||||
return TaxRate;
|
||||
}
|
||||
public Double getTaxRate() {
|
||||
return TaxRate;
|
||||
}
|
||||
|
||||
public void setTaxRate(Double taxRate) {
|
||||
TaxRate = taxRate;
|
||||
}
|
||||
public void setTaxRate(Double taxRate) {
|
||||
TaxRate = taxRate;
|
||||
}
|
||||
|
||||
public Double getTaxMoney() {
|
||||
return TaxMoney;
|
||||
}
|
||||
public Double getTaxMoney() {
|
||||
return TaxMoney;
|
||||
}
|
||||
|
||||
public void setTaxMoney(Double taxMoney) {
|
||||
TaxMoney = taxMoney;
|
||||
}
|
||||
public void setTaxMoney(Double taxMoney) {
|
||||
TaxMoney = taxMoney;
|
||||
}
|
||||
|
||||
public Double getTaxLastMoney() {
|
||||
return TaxLastMoney;
|
||||
}
|
||||
public Double getTaxLastMoney() {
|
||||
return TaxLastMoney;
|
||||
}
|
||||
|
||||
public void setTaxLastMoney(Double taxLastMoney) {
|
||||
TaxLastMoney = taxLastMoney;
|
||||
}
|
||||
public void setTaxLastMoney(Double taxLastMoney) {
|
||||
TaxLastMoney = taxLastMoney;
|
||||
}
|
||||
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public String getOtherField4() {
|
||||
return OtherField4;
|
||||
}
|
||||
public String getOtherField4() {
|
||||
return OtherField4;
|
||||
}
|
||||
|
||||
public void setOtherField4(String otherField4) {
|
||||
OtherField4 = otherField4;
|
||||
}
|
||||
public void setOtherField4(String otherField4) {
|
||||
OtherField4 = otherField4;
|
||||
}
|
||||
|
||||
public String getOtherField5() {
|
||||
return OtherField5;
|
||||
}
|
||||
public String getOtherField5() {
|
||||
return OtherField5;
|
||||
}
|
||||
|
||||
public void setOtherField5(String otherField5) {
|
||||
OtherField5 = otherField5;
|
||||
}
|
||||
public void setOtherField5(String otherField5) {
|
||||
OtherField5 = otherField5;
|
||||
}
|
||||
|
||||
public String getMType() {
|
||||
return MType;
|
||||
}
|
||||
public String getMType() {
|
||||
return MType;
|
||||
}
|
||||
|
||||
public void setMType(String MType) {
|
||||
this.MType = MType;
|
||||
}
|
||||
public void setMType(String MType) {
|
||||
this.MType = MType;
|
||||
}
|
||||
|
||||
public String getMpList() {
|
||||
return mpList;
|
||||
}
|
||||
public String getMpList() {
|
||||
return mpList;
|
||||
}
|
||||
|
||||
public void setMpList(String mpList) {
|
||||
this.mpList = mpList;
|
||||
}
|
||||
public void setMpList(String mpList) {
|
||||
this.mpList = mpList;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class DepotItemShowModel implements Serializable
|
||||
{
|
||||
public class DepotItemShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
public String getMsgTip()
|
||||
{
|
||||
public String getMsgTip() {
|
||||
return msgTip;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialCategoryModel implements Serializable
|
||||
{
|
||||
public class MaterialCategoryModel implements Serializable {
|
||||
private MaterialCategoryShowModel showModel = new MaterialCategoryShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -12,112 +11,112 @@ public class MaterialCategoryModel implements Serializable
|
||||
* 名称
|
||||
*/
|
||||
private String Name = "";
|
||||
|
||||
|
||||
/**
|
||||
* 等级
|
||||
*/
|
||||
private Short CategoryLevel;
|
||||
|
||||
|
||||
/**
|
||||
* ParentId
|
||||
*/
|
||||
private Long ParentId;
|
||||
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long materialCategoryID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String materialCategoryIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public MaterialCategoryShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public MaterialCategoryShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(MaterialCategoryShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(MaterialCategoryShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public Short getCategoryLevel() {
|
||||
return CategoryLevel;
|
||||
}
|
||||
public Short getCategoryLevel() {
|
||||
return CategoryLevel;
|
||||
}
|
||||
|
||||
public void setCategoryLevel(Short categoryLevel) {
|
||||
CategoryLevel = categoryLevel;
|
||||
}
|
||||
public void setCategoryLevel(Short categoryLevel) {
|
||||
CategoryLevel = categoryLevel;
|
||||
}
|
||||
|
||||
public Long getParentId() {
|
||||
return ParentId;
|
||||
}
|
||||
public Long getParentId() {
|
||||
return ParentId;
|
||||
}
|
||||
|
||||
public void setParentId(Long parentId) {
|
||||
ParentId = parentId;
|
||||
}
|
||||
public void setParentId(Long parentId) {
|
||||
ParentId = parentId;
|
||||
}
|
||||
|
||||
public Long getMaterialCategoryID() {
|
||||
return materialCategoryID;
|
||||
}
|
||||
public Long getMaterialCategoryID() {
|
||||
return materialCategoryID;
|
||||
}
|
||||
|
||||
public void setMaterialCategoryID(Long materialCategoryID) {
|
||||
this.materialCategoryID = materialCategoryID;
|
||||
}
|
||||
public void setMaterialCategoryID(Long materialCategoryID) {
|
||||
this.materialCategoryID = materialCategoryID;
|
||||
}
|
||||
|
||||
public String getMaterialCategoryIDs() {
|
||||
return materialCategoryIDs;
|
||||
}
|
||||
public String getMaterialCategoryIDs() {
|
||||
return materialCategoryIDs;
|
||||
}
|
||||
|
||||
public void setMaterialCategoryIDs(String materialCategoryIDs) {
|
||||
this.materialCategoryIDs = materialCategoryIDs;
|
||||
}
|
||||
public void setMaterialCategoryIDs(String materialCategoryIDs) {
|
||||
this.materialCategoryIDs = materialCategoryIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialCategoryShowModel implements Serializable
|
||||
{
|
||||
public class MaterialCategoryShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -5,8 +5,7 @@ import java.io.InputStream;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialModel implements Serializable
|
||||
{
|
||||
public class MaterialModel implements Serializable {
|
||||
private MaterialShowModel showModel = new MaterialShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -15,392 +14,384 @@ public class MaterialModel implements Serializable
|
||||
*/
|
||||
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 Standard = "";
|
||||
|
||||
/**
|
||||
* 规格
|
||||
*/
|
||||
private String Standard = "";
|
||||
|
||||
/**
|
||||
* 颜色
|
||||
*/
|
||||
private String Color = "";
|
||||
|
||||
|
||||
/**
|
||||
* 单位
|
||||
*/
|
||||
private String Unit = "";
|
||||
|
||||
|
||||
/**
|
||||
* 零售价
|
||||
*/
|
||||
private Double RetailPrice;
|
||||
|
||||
|
||||
/**
|
||||
* 最低售价
|
||||
*/
|
||||
private Double LowPrice;
|
||||
|
||||
|
||||
/**
|
||||
* 预设售价一
|
||||
*/
|
||||
private Double PresetPriceOne;
|
||||
|
||||
|
||||
/**
|
||||
* 预设售价二
|
||||
*/
|
||||
*/
|
||||
private Double PresetPriceTwo;
|
||||
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String Remark = "";
|
||||
|
||||
private Long UnitId;
|
||||
private String FirstOutUnit;
|
||||
private String FirstInUnit;
|
||||
private String PriceStrategy;
|
||||
private Long UnitId;
|
||||
private String FirstOutUnit;
|
||||
private String FirstInUnit;
|
||||
private String PriceStrategy;
|
||||
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
private File materialFile;
|
||||
/**
|
||||
* 导入excel文件
|
||||
*/
|
||||
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
|
||||
*/
|
||||
private Long CategoryId;
|
||||
|
||||
|
||||
/**
|
||||
* CategoryIds 用于in子查询
|
||||
*/
|
||||
private String CategoryIds = "1";
|
||||
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long materialID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String materialIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
private String browserType = ""; //浏览器类型
|
||||
private String fileName = ""; //文件名称
|
||||
private InputStream excelStream; //输入流,导出excel文件
|
||||
private String browserType = ""; //浏览器类型
|
||||
private String fileName = ""; //文件名称
|
||||
private InputStream excelStream; //输入流,导出excel文件
|
||||
|
||||
private String mpList = ""; //商品属性
|
||||
private String mpList = ""; //商品属性
|
||||
|
||||
public MaterialShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(MaterialShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getMfrs() {
|
||||
return Mfrs;
|
||||
}
|
||||
|
||||
public void setMfrs(String mfrs) {
|
||||
Mfrs = mfrs;
|
||||
}
|
||||
|
||||
public Double getPacking() {
|
||||
return Packing;
|
||||
}
|
||||
|
||||
public void setPacking(Double packing) {
|
||||
Packing = packing;
|
||||
}
|
||||
|
||||
public Double getSafetyStock() {
|
||||
return SafetyStock;
|
||||
}
|
||||
|
||||
public void setSafetyStock(Double safetyStock) {
|
||||
SafetyStock = safetyStock;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return Standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
Standard = standard;
|
||||
}
|
||||
|
||||
public String getColor() {
|
||||
return Color;
|
||||
}
|
||||
|
||||
public void setColor(String color) {
|
||||
Color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return Unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
Unit = unit;
|
||||
}
|
||||
|
||||
public void setRetailPrice(Double retailPrice)
|
||||
{
|
||||
RetailPrice = retailPrice;
|
||||
public MaterialShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public Double getRetailPrice()
|
||||
{
|
||||
public void setShowModel(MaterialShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public String getMfrs() {
|
||||
return Mfrs;
|
||||
}
|
||||
|
||||
public void setMfrs(String mfrs) {
|
||||
Mfrs = mfrs;
|
||||
}
|
||||
|
||||
public Double getPacking() {
|
||||
return Packing;
|
||||
}
|
||||
|
||||
public void setPacking(Double packing) {
|
||||
Packing = packing;
|
||||
}
|
||||
|
||||
public Double getSafetyStock() {
|
||||
return SafetyStock;
|
||||
}
|
||||
|
||||
public void setSafetyStock(Double safetyStock) {
|
||||
SafetyStock = safetyStock;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return Standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
Standard = standard;
|
||||
}
|
||||
|
||||
public String getColor() {
|
||||
return Color;
|
||||
}
|
||||
|
||||
public void setColor(String color) {
|
||||
Color = color;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return Unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
Unit = unit;
|
||||
}
|
||||
|
||||
public Double getRetailPrice() {
|
||||
return RetailPrice;
|
||||
}
|
||||
|
||||
public void setLowPrice(Double lowPrice)
|
||||
{
|
||||
LowPrice = lowPrice;
|
||||
public void setRetailPrice(Double retailPrice) {
|
||||
RetailPrice = retailPrice;
|
||||
}
|
||||
|
||||
public Double getLowPrice()
|
||||
{
|
||||
public Double getLowPrice() {
|
||||
return LowPrice;
|
||||
}
|
||||
|
||||
public void setPresetPriceOne(Double presetPriceOne)
|
||||
{
|
||||
PresetPriceOne = presetPriceOne;
|
||||
public void setLowPrice(Double lowPrice) {
|
||||
LowPrice = lowPrice;
|
||||
}
|
||||
|
||||
public Double getPresetPriceOne()
|
||||
{
|
||||
public Double getPresetPriceOne() {
|
||||
return PresetPriceOne;
|
||||
}
|
||||
|
||||
public void setPresetPriceTwo(Double presetPriceTwo)
|
||||
{
|
||||
PresetPriceTwo = presetPriceTwo;
|
||||
public void setPresetPriceOne(Double presetPriceOne) {
|
||||
PresetPriceOne = presetPriceOne;
|
||||
}
|
||||
|
||||
public Double getPresetPriceTwo()
|
||||
{
|
||||
public Double getPresetPriceTwo() {
|
||||
return PresetPriceTwo;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
public void setPresetPriceTwo(Double presetPriceTwo) {
|
||||
PresetPriceTwo = presetPriceTwo;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
public String getRemark() {
|
||||
return Remark;
|
||||
}
|
||||
|
||||
public Long getCategoryId() {
|
||||
return CategoryId;
|
||||
}
|
||||
public void setRemark(String remark) {
|
||||
Remark = remark;
|
||||
}
|
||||
|
||||
public void setCategoryId(Long categoryId) {
|
||||
CategoryId = categoryId;
|
||||
}
|
||||
public Long getCategoryId() {
|
||||
return CategoryId;
|
||||
}
|
||||
|
||||
public Long getMaterialID() {
|
||||
return materialID;
|
||||
}
|
||||
public void setCategoryId(Long categoryId) {
|
||||
CategoryId = categoryId;
|
||||
}
|
||||
|
||||
public void setMaterialID(Long materialID) {
|
||||
this.materialID = materialID;
|
||||
}
|
||||
public Long getMaterialID() {
|
||||
return materialID;
|
||||
}
|
||||
|
||||
public String getMaterialIDs() {
|
||||
return materialIDs;
|
||||
}
|
||||
public void setMaterialID(Long materialID) {
|
||||
this.materialID = materialID;
|
||||
}
|
||||
|
||||
public void setMaterialIDs(String materialIDs) {
|
||||
this.materialIDs = materialIDs;
|
||||
}
|
||||
public String getMaterialIDs() {
|
||||
return materialIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public void setMaterialIDs(String materialIDs) {
|
||||
this.materialIDs = materialIDs;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public String getCategoryIds() {
|
||||
return CategoryIds;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setCategoryIds(String categoryIds) {
|
||||
CategoryIds = categoryIds;
|
||||
}
|
||||
public String getCategoryIds() {
|
||||
return CategoryIds;
|
||||
}
|
||||
|
||||
public Long getUnitId() {
|
||||
return UnitId;
|
||||
}
|
||||
public void setCategoryIds(String categoryIds) {
|
||||
CategoryIds = categoryIds;
|
||||
}
|
||||
|
||||
public void setUnitId(Long unitId) {
|
||||
UnitId = unitId;
|
||||
}
|
||||
public Long getUnitId() {
|
||||
return UnitId;
|
||||
}
|
||||
|
||||
public String getFirstOutUnit() {
|
||||
return FirstOutUnit;
|
||||
}
|
||||
public void setUnitId(Long unitId) {
|
||||
UnitId = unitId;
|
||||
}
|
||||
|
||||
public void setFirstOutUnit(String firstOutUnit) {
|
||||
FirstOutUnit = firstOutUnit;
|
||||
}
|
||||
public String getFirstOutUnit() {
|
||||
return FirstOutUnit;
|
||||
}
|
||||
|
||||
public String getFirstInUnit() {
|
||||
return FirstInUnit;
|
||||
}
|
||||
public void setFirstOutUnit(String firstOutUnit) {
|
||||
FirstOutUnit = firstOutUnit;
|
||||
}
|
||||
|
||||
public void setFirstInUnit(String firstInUnit) {
|
||||
FirstInUnit = firstInUnit;
|
||||
}
|
||||
public String getFirstInUnit() {
|
||||
return FirstInUnit;
|
||||
}
|
||||
|
||||
public String getPriceStrategy() {
|
||||
return PriceStrategy;
|
||||
}
|
||||
public void setFirstInUnit(String firstInUnit) {
|
||||
FirstInUnit = firstInUnit;
|
||||
}
|
||||
|
||||
public void setPriceStrategy(String priceStrategy) {
|
||||
PriceStrategy = priceStrategy;
|
||||
}
|
||||
public String getPriceStrategy() {
|
||||
return PriceStrategy;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
public void setPriceStrategy(String priceStrategy) {
|
||||
PriceStrategy = priceStrategy;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return Enabled;
|
||||
}
|
||||
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
Enabled = enabled;
|
||||
}
|
||||
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
public String getOtherField1() {
|
||||
return OtherField1;
|
||||
}
|
||||
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
public void setOtherField1(String otherField1) {
|
||||
OtherField1 = otherField1;
|
||||
}
|
||||
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
public String getOtherField2() {
|
||||
return OtherField2;
|
||||
}
|
||||
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
public void setOtherField2(String otherField2) {
|
||||
OtherField2 = otherField2;
|
||||
}
|
||||
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
public String getOtherField3() {
|
||||
return OtherField3;
|
||||
}
|
||||
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
public void setOtherField3(String otherField3) {
|
||||
OtherField3 = otherField3;
|
||||
}
|
||||
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
public String getBrowserType() {
|
||||
return browserType;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
public void setBrowserType(String browserType) {
|
||||
this.browserType = browserType;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
public InputStream getExcelStream() {
|
||||
return excelStream;
|
||||
}
|
||||
|
||||
public File getMaterialFile() {
|
||||
return materialFile;
|
||||
}
|
||||
public void setExcelStream(InputStream excelStream) {
|
||||
this.excelStream = excelStream;
|
||||
}
|
||||
|
||||
public void setMaterialFile(File materialFile) {
|
||||
this.materialFile = materialFile;
|
||||
}
|
||||
public File getMaterialFile() {
|
||||
return materialFile;
|
||||
}
|
||||
|
||||
public String getMpList() {
|
||||
return mpList;
|
||||
}
|
||||
public void setMaterialFile(File materialFile) {
|
||||
this.materialFile = materialFile;
|
||||
}
|
||||
|
||||
public void setMpList(String mpList) {
|
||||
this.mpList = mpList;
|
||||
}
|
||||
public String getMpList() {
|
||||
return mpList;
|
||||
}
|
||||
|
||||
public void setMpList(String mpList) {
|
||||
this.mpList = mpList;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,7 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialPropertyModel implements Serializable
|
||||
{
|
||||
public class MaterialPropertyModel implements Serializable {
|
||||
private MaterialCategoryShowModel showModel = new MaterialCategoryShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -12,111 +11,111 @@ public class MaterialPropertyModel implements Serializable
|
||||
* 名称
|
||||
*/
|
||||
private String nativeName;
|
||||
|
||||
|
||||
/**
|
||||
* 是否启用
|
||||
*/
|
||||
private Boolean enabled = true;
|
||||
private Boolean enabled = true;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private String sort;
|
||||
|
||||
/**
|
||||
* 别名
|
||||
*/
|
||||
private String anotherName;
|
||||
/**
|
||||
* 别名
|
||||
*/
|
||||
private String anotherName;
|
||||
|
||||
/**
|
||||
* Id编号
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* Id编号
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public MaterialCategoryShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public MaterialCategoryShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(MaterialCategoryShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(MaterialCategoryShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getNativeName() {
|
||||
return nativeName;
|
||||
}
|
||||
public String getNativeName() {
|
||||
return nativeName;
|
||||
}
|
||||
|
||||
public void setNativeName(String nativeName) {
|
||||
this.nativeName = nativeName;
|
||||
}
|
||||
public void setNativeName(String nativeName) {
|
||||
this.nativeName = nativeName;
|
||||
}
|
||||
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getAnotherName() {
|
||||
return anotherName;
|
||||
}
|
||||
public String getAnotherName() {
|
||||
return anotherName;
|
||||
}
|
||||
|
||||
public void setAnotherName(String anotherName) {
|
||||
this.anotherName = anotherName;
|
||||
}
|
||||
public void setAnotherName(String anotherName) {
|
||||
this.anotherName = anotherName;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialPropertyShowModel implements Serializable
|
||||
{
|
||||
public class MaterialPropertyShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -6,38 +6,35 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class MaterialShowModel implements Serializable
|
||||
{
|
||||
public class MaterialShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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,8 +3,7 @@ package com.jsh.model.vo.materials;
|
||||
import java.io.Serializable;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class PersonModel implements Serializable
|
||||
{
|
||||
public class PersonModel implements Serializable {
|
||||
private PersonShowModel showModel = new PersonShowModel();
|
||||
|
||||
/**======开始接受页面参数=================**/
|
||||
@@ -16,94 +15,94 @@ public class PersonModel implements Serializable
|
||||
* 姓名
|
||||
*/
|
||||
private String Name = "";
|
||||
|
||||
|
||||
/**
|
||||
* 分类ID
|
||||
*/
|
||||
private Long personID = 0l;
|
||||
|
||||
|
||||
/**
|
||||
* 分类IDs 批量操作使用
|
||||
*/
|
||||
private String personIDs = "";
|
||||
|
||||
|
||||
/**
|
||||
* 每页显示的个数
|
||||
*/
|
||||
private int pageSize = 10;
|
||||
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
private int pageNo = 1;
|
||||
|
||||
|
||||
/**
|
||||
* 用户IP,用户记录操作日志
|
||||
*/
|
||||
private String clientIp = "";
|
||||
|
||||
public PersonShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
public PersonShowModel getShowModel() {
|
||||
return showModel;
|
||||
}
|
||||
|
||||
public void setShowModel(PersonShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
public void setShowModel(PersonShowModel showModel) {
|
||||
this.showModel = showModel;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
public String getType() {
|
||||
return Type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
public void setType(String type) {
|
||||
Type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
public String getName() {
|
||||
return Name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public Long getPersonID() {
|
||||
return personID;
|
||||
}
|
||||
public Long getPersonID() {
|
||||
return personID;
|
||||
}
|
||||
|
||||
public void setPersonID(Long personID) {
|
||||
this.personID = personID;
|
||||
}
|
||||
public void setPersonID(Long personID) {
|
||||
this.personID = personID;
|
||||
}
|
||||
|
||||
public String getPersonIDs() {
|
||||
return personIDs;
|
||||
}
|
||||
public String getPersonIDs() {
|
||||
return personIDs;
|
||||
}
|
||||
|
||||
public void setPersonIDs(String personIDs) {
|
||||
this.personIDs = personIDs;
|
||||
}
|
||||
public void setPersonIDs(String personIDs) {
|
||||
this.personIDs = personIDs;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
public int getPageNo() {
|
||||
return pageNo;
|
||||
}
|
||||
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
public void setPageNo(int pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
}
|
||||
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
public String getClientIp() {
|
||||
return clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
public void setClientIp(String clientIp) {
|
||||
this.clientIp = clientIp;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,37 +6,34 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class PersonShowModel implements Serializable
|
||||
{
|
||||
public class PersonShowModel implements Serializable {
|
||||
/**
|
||||
* 提示信息
|
||||
*/
|
||||
private String msgTip = "";
|
||||
|
||||
|
||||
/**
|
||||
* 系统数据
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
public void setMsgTip(String msgTip)
|
||||
{
|
||||
public void setMsgTip(String msgTip) {
|
||||
this.msgTip = msgTip;
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
return map;
|
||||
}
|
||||
@SuppressWarnings("rawtypes")
|
||||
public Map<String, List> getMap() {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user