| 123456789101112 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- // LearningQuestionTestpaper is the golang structure for table learning_question_testpaper.
- type LearningQuestionTestpaper struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- QuestionId int `orm:"QuestionId" json:"questionId"` // 题目 Id
- TestpaperId int `orm:"TestpaperId" json:"testpaperId"` // 试卷 Id
- }
|