Browse Source

修正大小写引起的异常

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

Loading…
Cancel
Save