反馈信息 后端返回视图实体辅助类 (通常后端关联的表或者自定义的字段需要返回使用)
| 18 | * (通常后端关联的表或者自定义的字段需要返回使用) |
| 19 | */ |
| 20 | @TableName("chat") |
| 21 | public class ChatView extends ChatEntity implements Serializable { |
| 22 | private static final long serialVersionUID = 1L; |
| 23 | |
| 24 | //当前表 |
| 25 | /** |
| 26 | * 状态的值 |
| 27 | */ |
| 28 | @ColumnInfo(comment="状态的字典表值",type="varchar(200)") |
| 29 | private String zhuangtaiValue; |
| 30 | /** |
| 31 | * 数据类型的值 |
| 32 | */ |
| 33 | @ColumnInfo(comment="数据类型的字典表值",type="varchar(200)") |
| 34 | private String chatValue; |
| 35 | |
| 36 | //级联表 用户 |
| 37 | /** |
| 38 | * 用户编号 |
| 39 | */ |
| 40 | |
| 41 | @ColumnInfo(comment="用户编号",type="varchar(200)") |
| 42 | private String yonghuUuidNumber; |
| 43 | /** |
| 44 | * 用户姓名 |
| 45 | */ |
| 46 | |
| 47 | @ColumnInfo(comment="用户姓名",type="varchar(200)") |
| 48 | private String yonghuName; |
| 49 | /** |
| 50 | * 用户手机号 |
| 51 | */ |
| 52 | |
| 53 | @ColumnInfo(comment="用户手机号",type="varchar(200)") |
| 54 | private String yonghuPhone; |
| 55 | /** |
| 56 | * 用户身份证号 |
| 57 | */ |
| 58 | |
| 59 | @ColumnInfo(comment="用户身份证号",type="varchar(200)") |
| 60 | private String yonghuIdNumber; |
| 61 | /** |
| 62 | * 用户头像 |
| 63 | */ |
| 64 | |
| 65 | @ColumnInfo(comment="用户头像",type="varchar(200)") |
| 66 | private String yonghuPhoto; |
| 67 | /** |
| 68 | * 余额 |
| 69 | */ |
| 70 | @ColumnInfo(comment="余额",type="decimal(10,2)") |
| 71 | private Double newMoney; |
| 72 | /** |
| 73 | * 用户邮箱 |
| 74 | */ |
| 75 | |
| 76 | @ColumnInfo(comment="用户邮箱",type="varchar(200)") |
| 77 | private String yonghuEmail; |
nothing calls this directly
no outgoing calls
no test coverage detected