修复weight_discount字段问题
parent
9f2e87265a
commit
87b9717e45
|
|
@ -284,28 +284,6 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
|
||||||
return getInt("invoice_type");
|
return getInt("invoice_type");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* name: weight_discount
|
|
||||||
* type: DECIMAL(6,4)
|
|
||||||
* isNullable: NO
|
|
||||||
* isPrimaryKey: NO
|
|
||||||
* defaultValue: 1.0000
|
|
||||||
* @param weightDiscount 重量折扣系数
|
|
||||||
*/
|
|
||||||
@JSONField(name="weight_discount")
|
|
||||||
public void setWeightDiscount(java.math.BigDecimal weightDiscount) {
|
|
||||||
set("weight_discount", weightDiscount);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return weight_discount 重量折扣系数
|
|
||||||
*/
|
|
||||||
@JSONField(name="weight_discount")
|
|
||||||
public java.math.BigDecimal getWeightDiscount() {
|
|
||||||
return get("weight_discount");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* name: customer_type_id
|
* name: customer_type_id
|
||||||
* type: INT(10)
|
* type: INT(10)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue