package request import ( "sorbet/internal/entities" ) type CompanyStaffUpsertRequest struct { ID uint `json:"id" xml:"id" form:"id" path:"id"` CompanyID uint `json:"company_id" xml:"company_id" form:"company_id"` Name string `json:"name" xml:"name" form:"name"` Gender string `json:"gender" xml:"gender" form:"gender"` Position string `json:"position" xml:"position" form:"position"` PhoneNumber string `json:"phone_number" xml:"phone_number" form:"phone_number"` WechatOpenid string `json:"wechat_openid" xml:"wechat_openid" form:"wechat_openid"` WithoutStudy bool `json:"without_study" xml:"without_study" form:"without_study"` IsAdmin bool `json:"is_admin" xml:"is_admin" form:"is_admin"` } func (c *CompanyStaffUpsertRequest) GetID() any { return c.ID } func (c *CompanyStaffUpsertRequest) ToMap() map[string]any { return map[string]any{ "id": c.ID, "company_id": c.CompanyID, "name": c.Name, "gender": c.Gender, "position": c.Position, "phone_number": c.PhoneNumber, "wechat_openid": c.WechatOpenid, "without_study": c.WithoutStudy, "is_admin": c.IsAdmin, } } func (c *CompanyStaffUpsertRequest) ToEntity() any { return &entities.CompanyStaff{ ID: c.ID, CompanyID: c.CompanyID, Name: c.Name, Gender: c.Gender, Position: c.Position, PhoneNumber: c.PhoneNumber, WechatOpenid: c.WechatOpenid, WithoutStudy: c.WithoutStudy, IsAdmin: c.IsAdmin, } }