File was renamed from oying-system/src/main/java/com/oying/modules/system/domain/Merchants.java |
| | |
| | | **/ |
| | | @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 = "名称") |
| | |
| | | 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)); |
| | | } |
| | | } |