learning_skill_instrument.go 586 B

123456789101112
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. // LearningSkillInstrument is the golang structure for table learning_skill_instrument.
  6. type LearningSkillInstrument struct {
  7. Id int `orm:"Id,primary" json:"id"` // Id
  8. SkillId int `orm:"SkillId" json:"skillId"` // 技能 Id
  9. InstrumentId int `orm:"InstrumentId" json:"instrumentId"` // 设备 Id
  10. }