123456789101112131415 |
- package vo
- import "exam_system/entity"
- type SubjectVo struct {
- *entity.Subject
- QbName string `json:"qb_name,omitempty" db:"qb_name,omitempty"`
- Score *int `json:"score,omitempty"`
- }
- type SubIdsVo struct {
- Id *int `json:"id,omitempty"`
- Score *int `json:"score,omitempty"`
- }
|