package dto type ReportPeccancyDto struct { ID uint64 `json:"id"` //主键 UserID uint64 `json:"user_id"` //松果APP端用户ID OpWorkerID uint64 `json:"op_worker_id"` //运维用户编号(反馈) OperateID uint64 `json:"operate_id"` //操作处理违章运维人员ID UserMobile string `json:"user_mobile"` //用户手机号 UserName string `json:"user_name"` //用户名称 CityID uint64 `json:"city_id"` //用户所在城市ID BikeSn string `json:"bike_sn"` //车辆编号 BikeQrCode string `json:"bike_qr_code"` //车辆二维码编号 PeccancyTypeID uint64 `json:"peccancy_type_id"` //违章类型id(0表示其他) TemplateID int `json:"template_id"` //违章类型模板id TypeName string `json:"type_name"` //违章类型 PeccancyTypeName string `json:"peccancy_type_name"` //违章影响 DiscoveryTime int64 `json:"discovery_time"` //发现时间 Remark string `json:"remark"` //举报违章-备注信息 DiscoveryPlace string `json:"discovery_place"` //发现地点 Images string `json:"images"` //图片,json格式,"[{},{}]" Amount int `json:"amount"` //罚金金额 LimitTime int `json:"limit_time"` //限制用车时间,单位:天(9999代表永久) Status uint8 `json:"status"` //违章处理状态,0 未处理 1不处罚 2处罚 UserFineDetailID uint64 `json:"user_fine_detail_id"` //罚金记录ID IsWarning uint8 `json:"is_warning"` //违章是否为警告 0 否 1 是 WarningType uint8 `json:"warning_type"` //警告类型 1 用户初始警告 2 循环周期免罚占比警告 3 单项警告 4 可答题的警告 InfluenceImage string `json:"influence_image"` //违章实例图片及描述 json[{}] BlackID int `json:"black_id"` //黑名单记录表主键ID From uint8 `json:"from"` //数据来源 0 代表运维正常举报 1 代表从违规骑行得到 FollowType uint8 `json:"follow_type"` //跟进状态:1,未跟进 2,跟进中 3,误判 4,非误判 FollowMethod uint8 `json:"follow_method"` //1客服抽查跟进 2安全合规抽查跟进 3客户投诉跟进 4系统跟进 PayFineStatus uint8 `json:"pay_fine_status"` //缴纳罚金状态 0 否 1 是 IsAnswerReduction uint8 `json:"is_answer_reduction"` //是否通过答题免缴 0 否 1 是 UserShow uint8 `json:"user_show"` //用户端是否显示 0 否 1 是 CreateTime int64 `json:"create_time"` //创建时间 UpdateTime int64 `json:"update_time"` OperateTime int64 `json:"operate_time"` //操作时间 StartCycleTime int64 `json:"start_cycle_time"` //循环周期开始时间 EndCycleTime int64 `json:"end_cycle_time"` //循环周期结束时间 }