Commit 3e4db615 by 周晓航

升级sdk 使用builder 提供无参构造器

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent af83f954
...@@ -41,4 +41,16 @@ public class OrderExtended { ...@@ -41,4 +41,16 @@ public class OrderExtended {
* 预定单 蛋糕寄语(额外祝福语) * 预定单 蛋糕寄语(额外祝福语)
*/ */
private String sendWord; private String sendWord;
public OrderExtended() {
}
public OrderExtended(String orderClientGroup, String orderClientGroupCode, String storeNameEn, String spellGroupCode, String userPhone, String sendWord) {
this.orderClientGroup = orderClientGroup;
this.orderClientGroupCode = orderClientGroupCode;
this.storeNameEn = storeNameEn;
this.spellGroupCode = spellGroupCode;
this.userPhone = userPhone;
this.sendWord = sendWord;
}
} }
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 to comment