会员等级展示
This commit is contained in:
parent
2cd0fea776
commit
184f74e94b
@ -28,6 +28,8 @@ public class CustomerMainRespVO extends CustomerMain {
|
||||
List<BusiLabel> labelList;
|
||||
/**车辆品牌型号数组*/
|
||||
List<String> brandAndModel;
|
||||
/**会员名称 */
|
||||
private String levelName;
|
||||
|
||||
/**是否车主(0否1是)*/
|
||||
private String isOwner;
|
||||
|
@ -36,10 +36,12 @@
|
||||
main.inviter AS inviter,
|
||||
main.inviter_type AS inviterType,
|
||||
main.status AS status,
|
||||
group_concat(item.ser_content) AS serContents
|
||||
group_concat(item.ser_content) AS serContents,
|
||||
memberLevel.name AS levelName
|
||||
FROM
|
||||
base_customer_main main
|
||||
LEFT JOIN base_customer_item item ON main.id = item.cus_id AND item.deleted = 0
|
||||
LEFT JOIN dl_member_level memberLevel ON main.member_level_id = memberLevel.id
|
||||
<where>
|
||||
main.deleted = 0
|
||||
<if test="entity.cusName != null and entity.cusName != ''">
|
||||
|
Loading…
Reference in New Issue
Block a user