更改员工相关逻辑,支付方式部分调整

This commit is contained in:
liuyingfang
2024-03-04 13:52:15 +08:00
parent b1f6a494e6
commit ebe5c2123b
4 changed files with 20 additions and 5 deletions

View File

@@ -79,7 +79,9 @@ public class TbPlussShopStaff implements Serializable {
@Column(name = "`updated_at`")
@ApiModelProperty(value = "updatedAt")
private Long updatedAt;
@Column(name = "type")
@ApiModelProperty(value = "master商户账号staff员工")
private String type;
public void copy(TbPlussShopStaff source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}