22 lines
345 B
Go
22 lines
345 B
Go
package model
|
|
|
|
// INFO 一些基础表单的整合
|
|
|
|
type AnmBreed struct {
|
|
BriefModel
|
|
}
|
|
|
|
type AnmSterilzation struct { // TEST How to use BriefModel, the dif between Common
|
|
Id int64 `json:"id"`
|
|
NameZh string `json:"name_zh"`
|
|
NameEn string `json:"name_en"`
|
|
}
|
|
|
|
type AnmStatus struct {
|
|
BriefModel
|
|
}
|
|
|
|
type AnmGender struct {
|
|
BriefModel
|
|
}
|