// ========================================================================== // This is auto-generated by gf cli tool. Fill this file as you wish. // ========================================================================== package model import ( "dashoo.cn/micro/app/model/proj/internal" ) // ProjBusinessContact is the golang structure for table proj_business_contact. type ProjBusinessContact internal.ProjBusinessContact // Fill with you ideas below. type BusinessContact struct { Id int `json:"id"` // 主键 BusId int `json:"busId"` // 关联项目 ContactId int `json:"contactId"` // 联系人主键 CustId int `json:"custId" ` // 关联客户 CuctName string `json:"cuctName" ` // 姓名 CuctGender string `json:"cuctGender"` // 性别(10男20女) Postion string `json:"postion"` // 职位 Telephone string `json:"telephone"` // 电话 Wechat string `json:"wechat"` // 微信 Email string `json:"email"` // 邮箱 Policy int `json:"policy"` //是否决策 } type BusinessContactReq struct { BusId int `json:"busId" v:"required#关联项目不能为空"` // 关联项目 ContactIds []int `json:"contactIds" v:"required#联系人不能为空"` // 联系人主键 Remark string `json:"remark"` // 备注 }