@NotNull
@Length(max=16)
@Column(length=16, nullable=false)private Integer status = STATUS_ENABLED;
因为integer 类型没有这种校验类型,所以不对
把@notnull 和@length都去掉。
@NotNull
@Length(max=16)
@Column(length=16, nullable=false)因为integer 类型没有这种校验类型,所以不对
把@notnull 和@length都去掉。