| | |
| | | import org.hibernate.annotations.GenericGenerator; |
| | | |
| | | /** |
| | | * 签到码表 实体 |
| | | * 签到码表 实体 |
| | | * @author ody.yuan |
| | | * |
| | | */ |
| | |
| | | @NamedQuery(name="SchSignCode.findAll", query="SELECT s FROM SchSignCode s") |
| | | public class SchSignCode { |
| | | |
| | | /** 主键 */ |
| | | /** 主键 */ |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | | @GenericGenerator(name = "hibernate-uuid", strategy = "uuid") |
| | | @Column(name="SIGN_CODE_ID", unique=true, nullable=false, length=32) |
| | | private String signCodeId; |
| | | |
| | | /** 签到code */ |
| | | /** 签到code */ |
| | | @Column(name="CODE", nullable=false, length=32) |
| | | private String code; |
| | | |
| | | /** 班级ID */ |
| | | /** 班级ID */ |
| | | @Column(name="CLASS_ID", nullable=false, length=32) |
| | | private String classId; |
| | | |