vue版本上线
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import com.jsh.erp.datasource.entities.AccountItem;
|
||||
|
||||
public class AccountItemVo4List extends AccountItem {
|
||||
|
||||
private String accountName;
|
||||
|
||||
private String inOutItemName;
|
||||
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
public void setAccountName(String accountName) {
|
||||
this.accountName = accountName;
|
||||
}
|
||||
|
||||
public String getInOutItemName() {
|
||||
return inOutItemName;
|
||||
}
|
||||
|
||||
public void setInOutItemName(String inOutItemName) {
|
||||
this.inOutItemName = inOutItemName;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class AccountVo4InOutList {
|
||||
|
||||
private String number;
|
||||
|
||||
private String type;
|
||||
|
||||
private String supplierName;
|
||||
|
||||
private BigDecimal changeAmount;
|
||||
|
||||
private BigDecimal balance;
|
||||
|
||||
private String operTime;
|
||||
|
||||
private String aList;
|
||||
|
||||
private String amList;
|
||||
|
||||
private Long tenantId;
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSupplierName() {
|
||||
return supplierName;
|
||||
}
|
||||
|
||||
public void setSupplierName(String supplierName) {
|
||||
this.supplierName = supplierName;
|
||||
}
|
||||
|
||||
public BigDecimal getChangeAmount() {
|
||||
return changeAmount;
|
||||
}
|
||||
|
||||
public void setChangeAmount(BigDecimal changeAmount) {
|
||||
this.changeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getBalance() {
|
||||
return balance;
|
||||
}
|
||||
|
||||
public void setBalance(BigDecimal balance) {
|
||||
this.balance = balance;
|
||||
}
|
||||
|
||||
public String getOperTime() {
|
||||
return operTime;
|
||||
}
|
||||
|
||||
public void setOperTime(String operTime) {
|
||||
this.operTime = operTime;
|
||||
}
|
||||
|
||||
public String getaList() {
|
||||
return aList;
|
||||
}
|
||||
|
||||
public void setaList(String aList) {
|
||||
this.aList = aList;
|
||||
}
|
||||
|
||||
public String getAmList() {
|
||||
return amList;
|
||||
}
|
||||
|
||||
public void setAmList(String amList) {
|
||||
this.amList = amList;
|
||||
}
|
||||
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(Long tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import com.jsh.erp.datasource.entities.Account;
|
||||
|
||||
public class AccountVo4List extends Account{
|
||||
|
||||
private String thisMonthAmount;
|
||||
|
||||
public String getThisMonthAmount() {
|
||||
return thisMonthAmount;
|
||||
}
|
||||
|
||||
public void setThisMonthAmount(String thisMonthAmount) {
|
||||
this.thisMonthAmount = thisMonthAmount;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotHeadVo4InDetail {
|
||||
|
||||
private String Number;
|
||||
|
||||
private String MName;
|
||||
|
||||
private String Model;
|
||||
|
||||
private String standard;
|
||||
|
||||
private BigDecimal UnitPrice;
|
||||
|
||||
private BigDecimal OperNumber;
|
||||
|
||||
private BigDecimal AllPrice;
|
||||
|
||||
private String SName;
|
||||
|
||||
private String DName;
|
||||
|
||||
private String OperTime;
|
||||
|
||||
private String NewType;
|
||||
|
||||
private Long tenantId;
|
||||
|
||||
public String getNumber() {
|
||||
return Number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
Number = number;
|
||||
}
|
||||
|
||||
public String getMName() {
|
||||
return MName;
|
||||
}
|
||||
|
||||
public void setMName(String MName) {
|
||||
this.MName = MName;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
this.standard = standard;
|
||||
}
|
||||
|
||||
public BigDecimal getUnitPrice() {
|
||||
return UnitPrice;
|
||||
}
|
||||
|
||||
public void setUnitPrice(BigDecimal unitPrice) {
|
||||
UnitPrice = unitPrice;
|
||||
}
|
||||
|
||||
public BigDecimal getOperNumber() {
|
||||
return OperNumber;
|
||||
}
|
||||
|
||||
public void setOperNumber(BigDecimal operNumber) {
|
||||
OperNumber = operNumber;
|
||||
}
|
||||
|
||||
public BigDecimal getAllPrice() {
|
||||
return AllPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(BigDecimal allPrice) {
|
||||
AllPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getSName() {
|
||||
return SName;
|
||||
}
|
||||
|
||||
public void setSName(String SName) {
|
||||
this.SName = SName;
|
||||
}
|
||||
|
||||
public String getDName() {
|
||||
return DName;
|
||||
}
|
||||
|
||||
public void setDName(String DName) {
|
||||
this.DName = DName;
|
||||
}
|
||||
|
||||
public String getOperTime() {
|
||||
return OperTime;
|
||||
}
|
||||
|
||||
public void setOperTime(String operTime) {
|
||||
OperTime = operTime;
|
||||
}
|
||||
|
||||
public String getNewType() {
|
||||
return NewType;
|
||||
}
|
||||
|
||||
public void setNewType(String newType) {
|
||||
NewType = newType;
|
||||
}
|
||||
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(Long tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotHeadVo4InOutMCount {
|
||||
|
||||
private Long MaterialId;
|
||||
|
||||
private String mName;
|
||||
|
||||
private String Model;
|
||||
|
||||
private String standard;
|
||||
|
||||
private String categoryName;
|
||||
|
||||
private BigDecimal numSum;
|
||||
|
||||
private BigDecimal priceSum;
|
||||
|
||||
private Long tenantId;
|
||||
|
||||
public Long getMaterialId() {
|
||||
return MaterialId;
|
||||
}
|
||||
|
||||
public void setMaterialId(Long materialId) {
|
||||
MaterialId = materialId;
|
||||
}
|
||||
|
||||
public String getmName() {
|
||||
return mName;
|
||||
}
|
||||
|
||||
public void setmName(String mName) {
|
||||
this.mName = mName;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return Model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
Model = model;
|
||||
}
|
||||
|
||||
public String getStandard() {
|
||||
return standard;
|
||||
}
|
||||
|
||||
public void setStandard(String standard) {
|
||||
this.standard = standard;
|
||||
}
|
||||
|
||||
public String getCategoryName() {
|
||||
return categoryName;
|
||||
}
|
||||
|
||||
public void setCategoryName(String categoryName) {
|
||||
this.categoryName = categoryName;
|
||||
}
|
||||
|
||||
public BigDecimal getNumSum() {
|
||||
return numSum;
|
||||
}
|
||||
|
||||
public void setNumSum(BigDecimal numSum) {
|
||||
this.numSum = numSum;
|
||||
}
|
||||
|
||||
public BigDecimal getPriceSum() {
|
||||
return priceSum;
|
||||
}
|
||||
|
||||
public void setPriceSum(BigDecimal priceSum) {
|
||||
this.priceSum = priceSum;
|
||||
}
|
||||
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(Long tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import com.jsh.erp.datasource.entities.DepotHead;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class DepotHeadVo4List extends DepotHead{
|
||||
|
||||
private String projectName;
|
||||
|
||||
private String organName;
|
||||
|
||||
private String userName;
|
||||
|
||||
private String accountName;
|
||||
|
||||
private String allocationProjectName;
|
||||
|
||||
private String materialsList;
|
||||
|
||||
private String operTimeStr;
|
||||
|
||||
public String getProjectName() {
|
||||
return projectName;
|
||||
}
|
||||
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
public String getOrganName() {
|
||||
return organName;
|
||||
}
|
||||
|
||||
public void setOrganName(String organName) {
|
||||
this.organName = organName;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
public void setAccountName(String accountName) {
|
||||
this.accountName = accountName;
|
||||
}
|
||||
|
||||
public String getAllocationProjectName() {
|
||||
return allocationProjectName;
|
||||
}
|
||||
|
||||
public void setAllocationProjectName(String allocationProjectName) {
|
||||
this.allocationProjectName = allocationProjectName;
|
||||
}
|
||||
|
||||
public String getMaterialsList() {
|
||||
return materialsList;
|
||||
}
|
||||
|
||||
public void setMaterialsList(String materialsList) {
|
||||
this.materialsList = materialsList;
|
||||
}
|
||||
|
||||
public String getOperTimeStr() {
|
||||
return operTimeStr;
|
||||
}
|
||||
|
||||
public void setOperTimeStr(String operTimeStr) {
|
||||
this.operTimeStr = operTimeStr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotHeadVo4StatementAccount {
|
||||
|
||||
private String number;
|
||||
|
||||
private String type;
|
||||
|
||||
private BigDecimal discountLastMoney;
|
||||
|
||||
private BigDecimal otherMoney;
|
||||
|
||||
private BigDecimal billMoney;
|
||||
|
||||
private BigDecimal changeAmount;
|
||||
|
||||
private BigDecimal allPrice;
|
||||
|
||||
private String supplierName;
|
||||
|
||||
private String oTime;
|
||||
|
||||
private Long tenantId;
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public BigDecimal getDiscountLastMoney() {
|
||||
return discountLastMoney;
|
||||
}
|
||||
|
||||
public void setDiscountLastMoney(BigDecimal discountLastMoney) {
|
||||
this.discountLastMoney = discountLastMoney;
|
||||
}
|
||||
|
||||
public BigDecimal getOtherMoney() {
|
||||
return otherMoney;
|
||||
}
|
||||
|
||||
public void setOtherMoney(BigDecimal otherMoney) {
|
||||
this.otherMoney = otherMoney;
|
||||
}
|
||||
|
||||
public BigDecimal getBillMoney() {
|
||||
return billMoney;
|
||||
}
|
||||
|
||||
public void setBillMoney(BigDecimal billMoney) {
|
||||
this.billMoney = billMoney;
|
||||
}
|
||||
|
||||
public BigDecimal getChangeAmount() {
|
||||
return changeAmount;
|
||||
}
|
||||
|
||||
public void setChangeAmount(BigDecimal changeAmount) {
|
||||
this.changeAmount = changeAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getAllPrice() {
|
||||
return allPrice;
|
||||
}
|
||||
|
||||
public void setAllPrice(BigDecimal allPrice) {
|
||||
this.allPrice = allPrice;
|
||||
}
|
||||
|
||||
public String getSupplierName() {
|
||||
return supplierName;
|
||||
}
|
||||
|
||||
public void setSupplierName(String supplierName) {
|
||||
this.supplierName = supplierName;
|
||||
}
|
||||
|
||||
public String getoTime() {
|
||||
return oTime;
|
||||
}
|
||||
|
||||
public void setoTime(String oTime) {
|
||||
this.oTime = oTime;
|
||||
}
|
||||
|
||||
public Long getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(Long tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotItemStockWarningCount {
|
||||
|
||||
private Long MId;
|
||||
|
||||
private String MName;
|
||||
|
||||
private String MModel;
|
||||
|
||||
private String MaterialUnit;
|
||||
|
||||
private String MColor;
|
||||
|
||||
private String MStandard;
|
||||
|
||||
private String MMfrs;
|
||||
|
||||
private String unitName;
|
||||
|
||||
private String MaterialOther;
|
||||
|
||||
private String MOtherField1;
|
||||
|
||||
private String MOtherField2;
|
||||
|
||||
private String MOtherField3;
|
||||
|
||||
private BigDecimal safetystock;//安全库存量
|
||||
|
||||
private BigDecimal currentNumber;//库存
|
||||
|
||||
private BigDecimal linjieNumber;//临界库存
|
||||
|
||||
public Long getMId() {
|
||||
return MId;
|
||||
}
|
||||
|
||||
public void setMId(Long MId) {
|
||||
this.MId = MId;
|
||||
}
|
||||
|
||||
public String getMName() {
|
||||
return MName;
|
||||
}
|
||||
|
||||
public void setMName(String MName) {
|
||||
this.MName = MName;
|
||||
}
|
||||
|
||||
public String getMModel() {
|
||||
return MModel;
|
||||
}
|
||||
|
||||
public void setMModel(String MModel) {
|
||||
this.MModel = MModel;
|
||||
}
|
||||
|
||||
public String getMaterialUnit() {
|
||||
return MaterialUnit;
|
||||
}
|
||||
|
||||
public void setMaterialUnit(String materialUnit) {
|
||||
MaterialUnit = materialUnit;
|
||||
}
|
||||
|
||||
public String getMColor() {
|
||||
return MColor;
|
||||
}
|
||||
|
||||
public void setMColor(String MColor) {
|
||||
this.MColor = MColor;
|
||||
}
|
||||
|
||||
public String getMStandard() {
|
||||
return MStandard;
|
||||
}
|
||||
|
||||
public void setMStandard(String MStandard) {
|
||||
this.MStandard = MStandard;
|
||||
}
|
||||
|
||||
public String getMMfrs() {
|
||||
return MMfrs;
|
||||
}
|
||||
|
||||
public void setMMfrs(String MMfrs) {
|
||||
this.MMfrs = MMfrs;
|
||||
}
|
||||
|
||||
public String getUnitName() {
|
||||
return unitName;
|
||||
}
|
||||
|
||||
public void setUnitName(String unitName) {
|
||||
this.unitName = unitName;
|
||||
}
|
||||
|
||||
public String getMaterialOther() {
|
||||
return MaterialOther;
|
||||
}
|
||||
|
||||
public void setMaterialOther(String materialOther) {
|
||||
MaterialOther = materialOther;
|
||||
}
|
||||
|
||||
public String getMOtherField1() {
|
||||
return MOtherField1;
|
||||
}
|
||||
|
||||
public void setMOtherField1(String MOtherField1) {
|
||||
this.MOtherField1 = MOtherField1;
|
||||
}
|
||||
|
||||
public String getMOtherField2() {
|
||||
return MOtherField2;
|
||||
}
|
||||
|
||||
public void setMOtherField2(String MOtherField2) {
|
||||
this.MOtherField2 = MOtherField2;
|
||||
}
|
||||
|
||||
public String getMOtherField3() {
|
||||
return MOtherField3;
|
||||
}
|
||||
|
||||
public void setMOtherField3(String MOtherField3) {
|
||||
this.MOtherField3 = MOtherField3;
|
||||
}
|
||||
|
||||
public BigDecimal getSafetystock() {
|
||||
return safetystock;
|
||||
}
|
||||
|
||||
public void setSafetystock(BigDecimal safetystock) {
|
||||
this.safetystock = safetystock;
|
||||
}
|
||||
|
||||
public BigDecimal getCurrentNumber() {
|
||||
return currentNumber;
|
||||
}
|
||||
|
||||
public void setCurrentNumber(BigDecimal currentNumber) {
|
||||
this.currentNumber = currentNumber;
|
||||
}
|
||||
|
||||
public BigDecimal getLinjieNumber() {
|
||||
return linjieNumber;
|
||||
}
|
||||
|
||||
public void setLinjieNumber(BigDecimal linjieNumber) {
|
||||
this.linjieNumber = linjieNumber;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotItemVo4Stock {
|
||||
|
||||
private BigDecimal inNum;
|
||||
private BigDecimal outNum;
|
||||
|
||||
public BigDecimal getInNum() {
|
||||
return inNum;
|
||||
}
|
||||
|
||||
public void setInNum(BigDecimal inNum) {
|
||||
this.inNum = inNum;
|
||||
}
|
||||
|
||||
public BigDecimal getOutNum() {
|
||||
return outNum;
|
||||
}
|
||||
|
||||
public void setOutNum(BigDecimal outNum) {
|
||||
this.outNum = outNum;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import com.jsh.erp.datasource.entities.Log;
|
||||
|
||||
public class LogVo4List extends Log {
|
||||
|
||||
private String userName;
|
||||
|
||||
private String createTimeStr;
|
||||
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getCreateTimeStr() {
|
||||
return createTimeStr;
|
||||
}
|
||||
|
||||
public void setCreateTimeStr(String createTimeStr) {
|
||||
this.createTimeStr = createTimeStr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import com.jsh.erp.datasource.entities.MaterialExtend;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class MaterialExtendVo4List extends MaterialExtend {
|
||||
|
||||
private String supplier;
|
||||
|
||||
private String originPlace;
|
||||
|
||||
private String unit;
|
||||
|
||||
private String brandName;
|
||||
|
||||
private BigDecimal guaranteePeriod;
|
||||
|
||||
private BigDecimal memberDecimal;
|
||||
|
||||
public String getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getOriginPlace() {
|
||||
return originPlace;
|
||||
}
|
||||
|
||||
public void setOriginPlace(String originPlace) {
|
||||
this.originPlace = originPlace;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getBrandName() {
|
||||
return brandName;
|
||||
}
|
||||
|
||||
public void setBrandName(String brandName) {
|
||||
this.brandName = brandName;
|
||||
}
|
||||
|
||||
public BigDecimal getGuaranteePeriod() {
|
||||
return guaranteePeriod;
|
||||
}
|
||||
|
||||
public void setGuaranteePeriod(BigDecimal guaranteePeriod) {
|
||||
this.guaranteePeriod = guaranteePeriod;
|
||||
}
|
||||
|
||||
public BigDecimal getMemberDecimal() {
|
||||
return memberDecimal;
|
||||
}
|
||||
|
||||
public void setMemberDecimal(BigDecimal memberDecimal) {
|
||||
this.memberDecimal = memberDecimal;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
/**
|
||||
* Description
|
||||
*
|
||||
* @Author: qiankunpingtai
|
||||
* @Date: 2019/3/13 18:11
|
||||
*/
|
||||
public class NodeAttributes {
|
||||
//编号
|
||||
private String no;
|
||||
//类型
|
||||
private Integer type;
|
||||
|
||||
public String getNo() {
|
||||
return no;
|
||||
}
|
||||
|
||||
public void setNo(String no) {
|
||||
this.no = no;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Description
|
||||
* 树形结构基本元素
|
||||
* @Author: cjl
|
||||
* @Date: 2019/2/19 11:27
|
||||
*/
|
||||
public class TreeNode {
|
||||
/**
|
||||
* id主键
|
||||
* */
|
||||
private Long id;
|
||||
private Long key;
|
||||
private Long value;
|
||||
/**
|
||||
* title显示的文本
|
||||
* */
|
||||
private String title;
|
||||
/**
|
||||
*state节点状态,'open' 或 'closed',默认:'open'。如果为'closed'的时候,将不自动展开该节点。
|
||||
* */
|
||||
private String state="open";
|
||||
/**
|
||||
*iconCls 节点图标id
|
||||
* */
|
||||
private String iconCls;
|
||||
/**
|
||||
* checked 是否被选中
|
||||
* */
|
||||
private boolean checked;
|
||||
/**
|
||||
*attributes 自定义属性
|
||||
* */
|
||||
private String attributes;
|
||||
/**
|
||||
* children 子节点
|
||||
* */
|
||||
private List<TreeNode> children;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
public void setKey(Long key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public Long getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(Long value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public String getIconCls() {
|
||||
return iconCls;
|
||||
}
|
||||
|
||||
public void setIconCls(String iconCls) {
|
||||
this.iconCls = iconCls;
|
||||
}
|
||||
|
||||
public boolean isChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
public String getAttributes() {
|
||||
return attributes;
|
||||
}
|
||||
|
||||
public void setAttributes(String attributes) {
|
||||
this.attributes = attributes;
|
||||
}
|
||||
|
||||
public List<TreeNode> getChildren() {
|
||||
return children;
|
||||
}
|
||||
|
||||
public void setChildren(List<TreeNode> children) {
|
||||
this.children = children;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
package com.jsh.erp.datasource.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Description
|
||||
*
|
||||
* @Author: qiankunpingtai
|
||||
* @Date: 2019/3/13 18:10
|
||||
*/
|
||||
public class TreeNodeEx {
|
||||
/**
|
||||
* id主键
|
||||
* */
|
||||
private Long id;
|
||||
/**
|
||||
* text显示的文本
|
||||
* */
|
||||
private String text;
|
||||
/**
|
||||
*state节点状态,'open' 或 'closed',默认:'open'。如果为'closed'的时候,将不自动展开该节点。
|
||||
* */
|
||||
private String state="open";
|
||||
/**
|
||||
*iconCls 节点图标id
|
||||
* */
|
||||
private String iconCls;
|
||||
/**
|
||||
* checked 是否被选中
|
||||
* */
|
||||
private boolean checked;
|
||||
/**
|
||||
*attributes 自定义属性
|
||||
* */
|
||||
private NodeAttributes attributes;
|
||||
/**
|
||||
* children 子节点
|
||||
* */
|
||||
private List<TreeNode> children;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getText() {
|
||||
return text;
|
||||
}
|
||||
|
||||
public void setText(String text) {
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public String getIconCls() {
|
||||
return iconCls;
|
||||
}
|
||||
|
||||
public void setIconCls(String iconCls) {
|
||||
this.iconCls = iconCls;
|
||||
}
|
||||
|
||||
public boolean isChecked() {
|
||||
return checked;
|
||||
}
|
||||
|
||||
public void setChecked(boolean checked) {
|
||||
this.checked = checked;
|
||||
}
|
||||
|
||||
public NodeAttributes getAttributes() {
|
||||
return attributes;
|
||||
}
|
||||
|
||||
public void setAttributes(NodeAttributes attributes) {
|
||||
this.attributes = attributes;
|
||||
}
|
||||
|
||||
public List<TreeNode> getChildren() {
|
||||
return children;
|
||||
}
|
||||
|
||||
public void setChildren(List<TreeNode> children) {
|
||||
this.children = children;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user