fix(MemberEmptyRegisterQueryVo): 空单注册注册列表添加注册日期字段
This commit is contained in:
parent
e76b64bdb9
commit
19a30f87d5
|
@ -1,11 +1,13 @@
|
||||||
package com.hzs.member.empty.vo;
|
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.Excel;
|
||||||
import com.hzs.common.core.annotation.Transaction;
|
import com.hzs.common.core.annotation.Transaction;
|
||||||
import com.hzs.common.core.constant.EnumsPrefixConstants;
|
import com.hzs.common.core.constant.EnumsPrefixConstants;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -163,6 +165,12 @@ public class MemberEmptyRegisterQueryVO {
|
||||||
@Excel(name = "上传业绩")
|
@Excel(name = "上传业绩")
|
||||||
private BigDecimal transferAchieve;
|
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 = "详细地址")
|
@Excel(name = "详细地址")
|
||||||
private String recAddress;
|
private String recAddress;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,8 @@
|
||||||
bap.name rec_province_val,
|
bap.name rec_province_val,
|
||||||
bac.name rec_city_val,
|
bac.name rec_city_val,
|
||||||
baco.name rec_county_val,
|
baco.name rec_county_val,
|
||||||
cmed.rec_address
|
cmed.rec_address,
|
||||||
|
cmed.creation_time
|
||||||
from cu_member_empty cme
|
from cu_member_empty cme
|
||||||
inner join CU_MEMBER_EMPTY_DETAIL cmed
|
inner join CU_MEMBER_EMPTY_DETAIL cmed
|
||||||
on cmed.pk_member_empty = cme.pk_id
|
on cmed.pk_member_empty = cme.pk_id
|
||||||
|
|
Loading…
Reference in New Issue