Commit 4e3b4cfa authored by 周健威's avatar 周健威

Merge branch 'holiday-price' into dev

parents d0de2145 bb2fd415
......@@ -308,4 +308,17 @@ public class BaseOrder implements Serializable {
@Column(name = "remark")
private Integer remark;
/**
* 备注
*/
@ApiModelProperty(value = "上级id")
@Column(name = "parent_user_id")
private Integer parentUserId;
/**
* 备注
*/
@ApiModelProperty(value = "备注")
@Column(name = "parent_user_company_id")
private Integer parentUserCompanyId;
}
......@@ -33,12 +33,6 @@ public interface OrderDetail extends OrderItemInter {
public void setAppUserDTO(AppUserDTO appUserDTO);
// public Integer getFacilitateId();
//
// public void setFacilitateId(Integer facilitateId);
public String getFacilitatePhone();
public void setFacilitatePhone(String facilitatePhone);
}
......@@ -99,6 +99,9 @@ public abstract class AbstractOrderHandle<Biz extends BaseBiz, Detail extends Or
baseOrder.setUserId(appUserDTO.getUserid());
baseOrder.setMemberLevel(appUserDTO.getMemberLevel());
//设置上级
baseOrder.setParentUserId(appUserDTO.getParentId());
return baseOrder;
}
......
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