123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package model
- import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- type EventMating struct {
- Id int64 `json:"id"`
- CowId int64 `json:"cowId"`
- DayAge int64 `json:"dayAge"`
- Lact int8 `json:"lact"`
- LactationDays int32 `json:"lactationDays"`
- MatingNumber int64 `json:"matingNumber"`
- MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
- ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
- MatingAt int64 `json:"matingAt"`
- FrozenSemenNumber string `json:"frozenSemenNumber"`
- StallNumberId int64 `json:"stallNumberId"`
- OperationId int64 `json:"operationId"`
- Remarks string `json:"remarks"`
- CreatedAt int64 `json:"createdAt"`
- UpdatedAt int64 `json:"updatedAt"`
- }
- func (e *EventMating) TableName() string {
- return "event_mating"
- }
- func NewEventMating(cow *Cow, currentUser *SystemUser, req *pasturePb.EventMating) *EventMating {
- return &EventMating{
- CowId: cow.Id,
- DayAge: int64(cow.GetDayAge()),
- Lact: int8(cow.Lact),
- LactationDays: cow.GetLactationDays(),
- MatingNumber: 1,
- MatingResult: pasturePb.MatingResult_Unknown,
- ExposeEstrusType: req.ExposeEstrusType,
- MatingAt: int64(req.MatingAt),
- FrozenSemenNumber: req.FrozenSemenNumber,
- StallNumberId: int64(req.StaffMemberId),
- OperationId: currentUser.Id,
- Remarks: req.Remarks,
- }
- }
- type EventMatingSlice []*EventMating
- func (e EventMatingSlice) ToPB(user []*SystemUser, exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
- res := make([]*pasturePb.SearchMatingList, len(e))
- for i, v := range e {
- operationName, staffMemberName := "", ""
- for _, u := range user {
- if v.OperationId == u.Id {
- operationName = u.Name
- }
- if v.StallNumberId == u.Id {
- staffMemberName = u.Name
- }
- }
- res[i] = &pasturePb.SearchMatingList{
- Id: int32(v.Id),
- CowId: int32(v.CowId),
- DayAge: int32(v.DayAge),
- Lact: int32(v.Lact),
- ExposeEstrusType: v.ExposeEstrusType,
- ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
- MatingAt: int32(v.MatingAt),
- FrozenSemenNumber: v.FrozenSemenNumber,
- LactationDays: v.LactationDays,
- StaffMemberId: int32(v.StallNumberId),
- StaffMemberName: staffMemberName,
- Remarks: v.Remarks,
- OperationId: int32(v.OperationId),
- OperationName: operationName,
- CreatedAt: int32(v.CreatedAt),
- UpdatedAt: int32(v.UpdatedAt),
- }
- }
- return res
- }
|