| | |
| | |
|
| | | // 是否默认: 0 非默认 1 默认项
|
| | | @Column(name = "br_is_default")
|
| | | private Integer isDefault; |
| | | private Boolean isDefault; |
| | |
|
| | | // 编辑状态:0 可编辑 1 不可编辑
|
| | | @Expose
|
| | | @Column(name = "br_non_edit")
|
| | | private Integer nonEdit; |
| | | // 固定项:0 非固定 1 固定
|
| | | @Column(name = "br_is_fixed")
|
| | | private Boolean isFixed; |
| | |
|
| | | // 创建时间
|
| | | @Column(name = "br_createtime")
|
| | |
| | | this.className = className;
|
| | | }
|
| | |
|
| | | public Integer getIsDefault() {
|
| | | public Boolean getIsDefault() {
|
| | | return isDefault;
|
| | | }
|
| | |
|
| | | public void setIsDefault(Integer isDefault) {
|
| | | public void setIsDefault(Boolean isDefault) {
|
| | | this.isDefault = isDefault;
|
| | | }
|
| | |
|
| | | public Integer getNonEdit() {
|
| | | return nonEdit;
|
| | | public Boolean getIsFixed() {
|
| | | return isFixed;
|
| | | }
|
| | |
|
| | | public void setNonEdit(Integer nonEdit) {
|
| | | this.nonEdit = nonEdit;
|
| | | public void setIsFixed(Boolean isFixed) {
|
| | | this.isFixed = isFixed;
|
| | | }
|
| | | }
|