xin
2025-06-03 7e2117e6e7382d942d5cdbb2ac5d35b7d278a478
oying-system/src/main/java/com/oying/modules/system/domain/Merchant.java
File was renamed from oying-system/src/main/java/com/oying/modules/system/domain/Merchants.java
@@ -20,12 +20,12 @@
**/
@Getter
@Setter
@TableName("sys_merchants")
public class Merchants extends BaseEntity implements Serializable {
@TableName("sys_merchant")
public class Merchant extends BaseEntity implements Serializable {
    @TableId(value = "merchants_id", type = IdType.AUTO)
    @TableId(value = "merchant_id", type = IdType.AUTO)
    @ApiModelProperty(value = "ID")
    private Long merchantsId;
    private Long merchantId;
    @NotBlank
    @ApiModelProperty(value = "名称")
@@ -48,21 +48,21 @@
    private String contactMobile;
    @ApiModelProperty(value = "排序")
    private Integer merchantsSort;
    private Integer merchantSort;
    @ApiModelProperty(value = "状态")
    private String enabled = "1";
    @ApiModelProperty(value = "审核人")
    private String authUser;
    private String auditUser;
    @ApiModelProperty(value = "审核时间")
    private Timestamp authTime;
    private Timestamp auditTime;
    @ApiModelProperty(value = "审核信息")
    private String authMessage;
    private String auditMessage;
    public void copy(Merchants source){
    public void copy(Merchant source){
        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
    }
}