Browse Source

修正大小写引起的异常

master
xyiege 4 years ago
parent
commit
c979ef1d9e
  1. 10
      src/main/java/cn/chjyj/szwh/bean/GoodsDetail.java

10
src/main/java/cn/chjyj/szwh/bean/GoodsDetail.java

@ -31,7 +31,7 @@ public class GoodsDetail {
private BigDecimal earnestMoney;//商品保证金 private BigDecimal earnestMoney;//商品保证金
private Integer transactionClass; //交易种类;1:权属;2:商品 private Integer transactionClass; //交易种类;1:权属;2:商品
private String contract; //描述 private String contract; //描述
private String otheridentifiers; //权属自有标识符(商品自有标识符) private String otherIdentifiers; //权属自有标识符(商品自有标识符)
private String classification; //标的商品的分类(交易种类为商品时候用的) private String classification; //标的商品的分类(交易种类为商品时候用的)
private String sourceIslicode; //资源isli标识码 private String sourceIslicode; //资源isli标识码
private String sourceIslicodeName; //资源名称 private String sourceIslicodeName; //资源名称
@ -182,12 +182,12 @@ public class GoodsDetail {
this.contract = contract; this.contract = contract;
} }
public String getOtheridentifiers() { public String getOtherIdentifiers() {
return otheridentifiers; return otherIdentifiers;
} }
public void setOtheridentifiers(String otheridentifiers) { public void setOtherIdentifiers(String otherIdentifiers) {
this.otheridentifiers = otheridentifiers; this.otherIdentifiers = otherIdentifiers;
} }
public String getClassification() { public String getClassification() {

Loading…
Cancel
Save