package vo import "time" // YxVolunteerVO 志愿视图对象 type YxVolunteerVO struct { ID string `json:"id"` VolunteerName string `json:"volunteerName"` // 志愿单名称 ScoreId string `json:"scoreId"` // 使用成绩id CreateType string `json:"createType"` // 生成类型(1.手动生成,2.智能生成) State string `json:"state"` // 志愿单状态(0-否,1-正在使用,2-历史) CreateBy string `json:"createBy"` // 创建人 CreateTime time.Time `json:"createTime"` // 创建日期 UpdateBy string `json:"updateBy"` // 更新人 UpdateTime time.Time `json:"updateTime"` // 更新日期 SysOrgCode string `json:"sysOrgCode"` // 所属部门 }