修复weight_discount字段问题

dev
lisai17@sina.com 2021-09-24 09:07:54 +08:00
parent 9f2e87265a
commit 87b9717e45
1 changed files with 0 additions and 22 deletions

View File

@ -284,28 +284,6 @@ public abstract class BaseCustomer<M extends BaseCustomer<M>> extends BaseModel<
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
* type: INT(10)