| 12345678910111213141516171819202122 |
- package department_request
- import (
- "encoding/json"
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- type DepartmentGroupRequest struct {
- Company *common.CompanyRequest `json:"company,omitempty"`
- }
- func (obj DepartmentGroupRequest) GetUrl() string {
- return "/department/group"
- }
- func (obj DepartmentGroupRequest) GetHttpParameter() *http.HttpParameter {
- parameter := http.NewPostHttpParameter()
- jsonBytes, _ := json.Marshal(obj)
- parameter.SetJsonParamer(string(jsonBytes))
- return parameter
- }
|