xin
2025-07-11 641f40f0712a96998b07202690ac5259b51e9d72
oying-system/src/main/java/com/oying/modules/system/domain/Merchant.java
@@ -31,10 +31,13 @@
    private Long merchantId;
    @NotBlank
    @ApiModelProperty(value = "商户类型")
    private String merchantType;
    @NotBlank
    @ApiModelProperty(value = "名称")
    private String merchantName;
    @NotBlank
    @ApiModelProperty(value = "商户编码")
    private String merchantCode;
@@ -54,7 +57,7 @@
    private Integer merchantSort;
    @ApiModelProperty(value = "状态")
    private String enabled = "1";
    private String enabled = "0";
    @ApiModelProperty(value = "审核人")
    private String auditUser;
@@ -67,7 +70,7 @@
    @TableField(exist = false)
    @ApiModelProperty(value = "用户ID")
    private String userId;
    private Long userId;
    public void copy(Merchant source) {
        BeanUtil.copyProperties(source, this, CopyOptions.create().setIgnoreNullValue(true));