|
|
@@ -2488,7 +2488,13 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
if (in.getShareType()==null || in.getShareType()!=1){
|
|
|
List<OutChannelListBo> list = (List<OutChannelListBo>) p.getList();
|
|
|
for (OutChannelListBo out : list) {
|
|
|
- out.setRemainingDays(getRemainingDays(out));
|
|
|
+ if(out.getType()==1){
|
|
|
+ out.setaName(null);
|
|
|
+ out.setCreateTime(null);
|
|
|
+ out.setLastFollowTime(null);
|
|
|
+ }else {
|
|
|
+ out.setRemainingDays(getRemainingDays(out));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
return p;
|