| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | |
| | | @TableField("supplier_contact") |
| | | private String supplierContact; |
| | | |
| | | @Length(max = 11, message = "手机号长度不能超过11个字符") |
| | | @ApiModelProperty(value = "联系电话") |
| | | @TableField("phone") |
| | | private String phone; |
| | | |
| | | @Length(max = 40, message = "账号长度不能超过40个字符") |
| | | @ApiModelProperty(value = "账号") |
| | | @TableField("account") |
| | | private String account; |
| | |
| | | @TableField("status") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "收款商户号") |
| | | @TableField("recv_merchant_no") |
| | | private String recvMerchantNo; |
| | | |
| | | |
| | | } |