提交 ac9f49fe authored 作者: 吴德鹏's avatar 吴德鹏

区分注册用户来源

上级 d8d13b3b
......@@ -149,6 +149,7 @@ public class TbCfUserInfo {
@Column(unique = true)
private String code;
private Integer source;
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(unique = true)
......@@ -178,7 +179,13 @@ public class TbCfUserInfo {
@JsonProperty
public BigDecimal networkAmount;
public Integer getSource() {
return source;
}
public void setSource(Integer source) {
this.source = source;
}
public void setCodeSentTime(Date codeSentTime) {
this.codeSentTime = codeSentTime;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论