Commit 25acbfbf by caosy

分享存储

parent 6d1bda0c
...@@ -47,7 +47,7 @@ public class BuyVoucherActivity implements java.io.Serializable { ...@@ -47,7 +47,7 @@ public class BuyVoucherActivity implements java.io.Serializable {
private String sendName;//发送方名称 private String sendName;//发送方名称
private String actName;//活动名称 private String actName;//活动名称
private String wishing;//祝福语 private String wishing;//祝福语
private BigDecimal grossPrice;// 毛利价
@Id @Id
...@@ -237,6 +237,13 @@ public class BuyVoucherActivity implements java.io.Serializable { ...@@ -237,6 +237,13 @@ public class BuyVoucherActivity implements java.io.Serializable {
public void setWishing(String wishing) { public void setWishing(String wishing) {
this.wishing = wishing; this.wishing = wishing;
} }
@Column(name = "grossPrice")
public BigDecimal getGrossPrice() {
return grossPrice;
}
public void setGrossPrice(BigDecimal grossPrice) {
this.grossPrice = grossPrice;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment