subject_vo.go 283 B

123456789101112131415
  1. package vo
  2. import "exam_system/entity"
  3. type SubjectVo struct {
  4. *entity.Subject
  5. QbName string `json:"qb_name,omitempty" db:"qb_name,omitempty"`
  6. Score *int `json:"score,omitempty"`
  7. }
  8. type SubIdsVo struct {
  9. Id *int `json:"id,omitempty"`
  10. Score *int `json:"score,omitempty"`
  11. }