@Length(max=32)
@Column(length=32, nullable=true, unique=true, updatable=false)
private String username;
username 该字段不允许修改,
updatable=true 设置为true后 字段允许修改。
@Length(max=32)
@Column(length=32, nullable=true, unique=true, updatable=false)
private String username;
username 该字段不允许修改,
updatable=true 设置为true后 字段允许修改。