| | |
| | | package com.dsh.course.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | @TableField("appUserId") |
| | | private Integer appUserId; |
| | | /** |
| | | * 学员id |
| | | */ |
| | | @TableField("studentId") |
| | | private Integer studentId; |
| | | /** |
| | | * 课包id |
| | | */ |
| | | @TableField("coursePackageId") |
| | | private Integer coursePackageId; |
| | | /** |
| | | * 课包购买记录id |
| | | */ |
| | | @TableField("coursePackagePaymentId") |
| | | private Integer coursePackagePaymentId; |
| | | /** |
| | | * 到课状态(0=否,1=是) |
| | | */ |
| | | @TableField("signInOrNot") |
| | | private Integer signInOrNot; |
| | | /** |
| | | * 预约状态(0=取消,1=预约) |
| | | */ |
| | | @TableField("reservationStatus") |
| | | private Integer reservationStatus; |
| | | @TableField("insertTime") |
| | | private Date insertTime; |
| | | |
| | | |