...
|
...
|
@@ -120,7 +120,12 @@ public class TradeBillsServiceImpl implements ITradeBillsService { |
|
|
resp.setValidStatus(item.getValidStatus());
|
|
|
resp.setValidStatusDesc(StoredSellerStatusEnum.getDescriptionByCode(item.getValidStatus()));
|
|
|
resp.setMobile(getMobileByUidFromCache(item.getUid()));
|
|
|
resp.setEnterTime(1000L * item.getEnterTime());
|
|
|
// 之前fore项目有bug,导致enterTime被更新成0了,如果为0,则去createTime作为入驻时间
|
|
|
if(item.getEnterTime()==0){
|
|
|
resp.setEnterTime(1000L * item.getCreateTime());
|
|
|
}else {
|
|
|
resp.setEnterTime(1000L * item.getEnterTime());
|
|
|
}
|
|
|
resp.setQuitTime(1000L * item.getQuitTime());
|
|
|
// 身份等级
|
|
|
resp.setEntryType(item.getEntryType());
|
...
|
...
|
|