作者 tangxvhui

微调

... ... @@ -79,10 +79,10 @@ type ChanceTypeBase struct {
}
type SelectCompanyUserListItem struct {
UserCompanyId int64 `json:"user_company_id"`
UserName string `json:"user_name"`
DepartmentId int64 `json:"department_id"`
DepartmentName string `json:"department_name"`
UserCompanyId int64 `json:"user_company_id" orm:"column(id)"`
NickName string `json:"nick_name" orm:"column(nick_name)"`
DepartmentId int64 `json:"department_id" orm:"column(department_id)"`
DepartmentName string `json:"department_name" orm:"column(department_name)"`
}
//下拉选择公司员工
... ...