Commit 95a0b555 by 徐高华

加好友

parent 4ffce4c0
......@@ -21,7 +21,7 @@ public class WxUserAddLogQDTO implements Serializable{
private String staffName;
private String clerkId;
private Integer addWay ;
private Date qwAddTime ;
private Long qwAddTime ;
private String friendClerkId ;
private String friendStoreId ;
......@@ -41,11 +41,11 @@ public class WxUserAddLogQDTO implements Serializable{
this.friendStoreId = friendStoreId;
}
public Date getQwAddTime() {
public Long getQwAddTime() {
return qwAddTime;
}
public void setQwAddTime(Date qwAddTime) {
public void setQwAddTime(Long qwAddTime) {
this.qwAddTime = qwAddTime;
}
......
......@@ -59,7 +59,7 @@ public class TabWxUserAddLog implements Serializable {
private java.util.Date updateTime;
/**是否所有好友删除 1是0否*/
private Integer allDelFlag;
private Date qwAddTime ;
private Long qwAddTime ;
private String friendClerkId ;
private String friendStoreId ;
......@@ -80,11 +80,11 @@ public class TabWxUserAddLog implements Serializable {
this.friendStoreId = friendStoreId;
}
public Date getQwAddTime() {
public Long getQwAddTime() {
return qwAddTime;
}
public void setQwAddTime(Date qwAddTime) {
public void setQwAddTime(Long qwAddTime) {
this.qwAddTime = qwAddTime;
}
......
......@@ -168,7 +168,7 @@ public class ExternalClerkRelatedServiceImpl implements ExternalClerkRelatedServ
wxUserAddLogQDTO.setStaffId(related.getStaffId());
wxUserAddLogQDTO.setClerkId(related.getClerkId());
if(null != related.getAddTime()) {
wxUserAddLogQDTO.setQwAddTime(new Date(related.getAddTime()*1000));
wxUserAddLogQDTO.setQwAddTime(related.getAddTime());
}
wxUserAddLogQDTO.setFriendClerkId(related.getClerkId());
wxUserAddLogQDTO.setFriendStoreId(related.getStoreId());
......
......@@ -250,7 +250,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
wxUserAddLogQDTO.setClerkId(related.getClerkId());
wxUserAddLogQDTO.setDelClerkFlag(true);
if(null != related.getAddTime()) {
wxUserAddLogQDTO.setQwAddTime(new Date(related.getAddTime()*1000));
wxUserAddLogQDTO.setQwAddTime(related.getAddTime());
}
wxUserAddLogQDTO.setFriendClerkId(related.getClerkId());
wxUserAddLogQDTO.setFriendStoreId(related.getStoreId());
......@@ -678,7 +678,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
wxUserAddLogQDTO.setClerkId(hyClerkId);
wxUserAddLogQDTO.setAddWay(dto.getAddWay());
if(StringUtils.isNotBlank(dto.getAddCreateTime())) {
wxUserAddLogQDTO.setQwAddTime(new Date(Long.valueOf(createTime)*1000));
wxUserAddLogQDTO.setQwAddTime(Long.valueOf(createTime));
}
wxUserAddLogQDTO.setFriendClerkId(staffClerkRelationDTO.getClerkId());
wxUserAddLogQDTO.setFriendStoreId(staffClerkRelationDTO.getStoreId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment