catface_backend_go/app/model/animal_com.go

22 lines
345 B
Go
Raw Normal View History

2024-10-14 19:27:46 +08:00
package model
// INFO 一些基础表单的整合
2024-10-16 11:33:32 +08:00
type AnmBreed struct {
2024-10-14 19:27:46 +08:00
BriefModel
}
2024-10-16 11:33:32 +08:00
type AnmSterilzation struct { // TEST How to use BriefModel, the dif between Common
2024-10-14 19:27:46 +08:00
Id int64 `json:"id"`
NameZh string `json:"name_zh"`
NameEn string `json:"name_en"`
}
type AnmStatus struct {
BriefModel
}
type AnmGender struct {
BriefModel
}