| | |
| | | |
| | | import cc.mrbird.febs.common.controller.BaseController; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | |
| | | * 账户状态;1-正常 2-禁用 |
| | | */ |
| | | private Integer accountStatus; |
| | | public static final int ACCOUNTSTATUS_Y = 1; |
| | | public static final int ACCOUNTSTATUS_N = 2; |
| | | /** |
| | | * 启用 |
| | | */ |
| | | public static final Integer ACCOUNT_STATUS_ENABLE = 1; |
| | | /** |
| | | * 禁用 |
| | | */ |
| | | public static final Integer ACCOUNT_STATUS_DISABLED = 2; |
| | | |
| | | private Integer accountType; |
| | | |
| | | /** |
| | | * 正常账号 |
| | | */ |
| | | public static final Integer ACCOUNT_TYPE_NORMAL = 1; |
| | | /** |
| | | * 测试账号 |
| | | */ |
| | | public static final Integer ACCOUNT_TYPE_TEST = 2; |
| | | @TableField(exist = false) |
| | | private String account; |
| | | |