fix(MemberEmptyRegisterQueryVo): 空单注册注册列表添加注册日期字段
This commit is contained in:
parent
27ec5b6193
commit
e377569645
|
@ -1,11 +1,13 @@
|
|||
package com.hzs.member.empty.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.hzs.common.core.annotation.Excel;
|
||||
import com.hzs.common.core.annotation.Transaction;
|
||||
import com.hzs.common.core.constant.EnumsPrefixConstants;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
@ -163,6 +165,12 @@ public class MemberEmptyRegisterQueryVO {
|
|||
@Excel(name = "上传业绩")
|
||||
private BigDecimal transferAchieve;
|
||||
|
||||
/**
|
||||
* 注册日期
|
||||
*/
|
||||
@Excel(name = "注册日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date creationTime;
|
||||
/**
|
||||
* 选购产品
|
||||
*/
|
||||
|
@ -232,4 +240,5 @@ public class MemberEmptyRegisterQueryVO {
|
|||
@Excel(name = "详细地址")
|
||||
private String recAddress;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -90,7 +90,8 @@
|
|||
bap.name rec_province_val,
|
||||
bac.name rec_city_val,
|
||||
baco.name rec_county_val,
|
||||
cmed.rec_address
|
||||
cmed.rec_address,
|
||||
cmed.creation_time
|
||||
from cu_member_empty cme
|
||||
inner join CU_MEMBER_EMPTY_DETAIL cmed
|
||||
on cmed.pk_member_empty = cme.pk_id
|
||||
|
|
Loading…
Reference in New Issue