添加发送短信,设置操作密码

This commit is contained in:
韩鹏辉
2024-07-11 13:34:28 +08:00
parent 21fb470052
commit 11b3af6104
5 changed files with 74 additions and 4 deletions

View File

@@ -127,6 +127,10 @@ public class TbMerchantAccount implements Serializable {
@ApiModelProperty(value = "updatedAt")
private Long updatedAt;
@Column(name = "`pwd`")
@ApiModelProperty(value = "操作密码")
private String pwd;
public void copy(TbMerchantAccount source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}