| | |
| | | |
| | | |
| | | /** |
| | | * 班级学员表实体 |
| | | * 班级学员表实体 |
| | | * @author ody.yuan |
| | | * |
| | | */ |
| | |
| | | public class SchReClassUser implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键 */ |
| | | /** 主键 */ |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | | @GenericGenerator(name = "hibernate-uuid", strategy = "uuid") |
| | | @Column(name="RE_ID", unique=true, nullable=false, length=32) |
| | | private String reId; |
| | | |
| | | /** 班级ID */ |
| | | /** 班级ID */ |
| | | @Column(name="CLASS_ID", length=32) |
| | | private String classId; |
| | | |
| | | /** 用户ID */ |
| | | /** 用户ID */ |
| | | @Column(name="USER_ID", length=32) |
| | | private String userId; |
| | | |