Commit 6de0af31 by wenyang Committed by akexiu

商机增加一个生日的输入(年月日),年龄自动计算出来

parent 21958404
......@@ -1116,6 +1116,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
String customerName = customer.getName();
info.setName(customerName);
info.setAge(customer.getAge());
info.setBirthDate(CommonUtil.dateParseString(customer.getBirthDate(),"yyyy-MM-dd"));
info.setGender(customer.getGender());
info.setMobileNo(customer.getMobileNo());
info.setWeChat(customer.getWechatNo());
......
......@@ -10,6 +10,7 @@ public class OpportunityBasicInformationInfo {
private Long opportunityId;
private String name;
private Long age;
private String birthDate;
private Integer gender;
private String mobileNo;
private String weChat;//微信号
......
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