package dbstruct type WorkerId struct { Id *int64 `json:"id" bson:"_id"` // 慧用工职业者id表id Mid *int64 `json:"mid" bson:"mid"` // 用户id WorkerId *string `json:"worker_id" bson:"worker_id"` // 职业者id Ct *int64 `json:"ct" bson:"ct"` // 创建时间 Ut *int64 `json:"ut" bson:"ut"` // 更新时间 DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记 }