新增会员时 填充加入会员时间
This commit is contained in:
@@ -2,6 +2,7 @@ package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class TbShopUser implements Serializable {
|
||||
private Integer id;
|
||||
@@ -61,6 +62,7 @@ public class TbShopUser implements Serializable {
|
||||
private Long updatedAt;
|
||||
|
||||
private String miniOpenId;
|
||||
private Date joinTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -295,4 +297,12 @@ public class TbShopUser implements Serializable {
|
||||
public void setDynamicCode(String dynamicCode) {
|
||||
this.dynamicCode = dynamicCode;
|
||||
}
|
||||
|
||||
public Date getJoinTime() {
|
||||
return joinTime;
|
||||
}
|
||||
|
||||
public void setJoinTime(Date joinTime) {
|
||||
this.joinTime = joinTime;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user