| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- package request
- import (
- "log-server/model/log"
- )
- type GetStatisticsLogRequest struct {
- log.StatisticsLog
- PageInfo
- GamePortId int `json:"game_port_id"`
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type GetStatisticsComputerRequest struct {
- log.LogComputer
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type OnlineComputerRequest struct {
- PcCode string `json:"pc_code"`
- Operator string `json:"operator"`
- }
- type SupConErrRequest struct {
- PcCode string `json:"pc_code"`
- Describe string `json:"describe"`
- }
- type TaskStatistics struct {
- GameId int `json:"game_id"`
- GameName string `json:"game_name"`
- GameIdXmy string `json:"game_id_xmy"`
- NewComplete int `json:"new_complete"`
- RetainedComplete int `json:"retained_complete"`
- PayComplete int `json:"pay_complete"`
- NewCompleteLocal int `json:"new_complete_local"`
- RetainedCompleteLocal int `json:"retained_complete_local"`
- PayCompleteLocal int `json:"pay_complete_local"`
- NewTarget int `json:"new_target"` // 目标新增
- RetainedTarget int `json:"retained_target"` // 目标留存
- PayTarget int `json:"pay_target"` // 目标付费
- OrderSuccessRate string `json:"order_success_rate"` // 订单成功率
- OrderSuccess int `json:"order_success"` //小绵羊成功付费数
- OrderCreate int `json:"order_create"` // 小绵羊创建付费订单数
- NewPullAccount int `json:"new_pull_account"`
- RetainedPullAccount int `json:"retained_pull_account"`
- NewScanningCode int `json:"new_scanning_code"`
- RetainedScanningCode int `json:"retained_scanning_code"`
- RetainedAccountNum int `json:"retained_account_num"` // 留存账号
- FeeAccountNum int `json:"fee_account_num"` // 付费账号
- Remark string `json:"remark"` //负责人
- GameRate string `json:"game_rate"` // 游戏效率
- }
- type TaskData struct {
- GameId int `json:"game_id"`
- NewPullAccount int `json:"new_pull_account"`
- RetainedPullAccount int `json:"retained_pull_account"`
- NewScanningCode int `json:"new_scanning_code"`
- RetainedScanningCode int `json:"retained_scanning_code"`
- RetainedAccountNum int `json:"retained_account_num"`
- FeeAccountNum int `json:"fee_account_num"`
- }
- type ExcelInfo struct {
- FileName string `json:"fileName"` // 文件名
- InfoList struct {
- log.LogComputer
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- } `json:"infoList"`
- }
- type ExcelDeviceErrRate struct {
- FileName string `json:"fileName"` // 文件名
- InfoList struct {
- log.DeviceStatisticsReply
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- } `json:"infoList"`
- }
- //导出ip列表
- type ExcelIpInfo struct {
- FileName string `json:"fileName"` // 文件名
- InfoList struct {
- log.GameIpRequest
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- } `json:"infoList"`
- }
- type GetLogScanningCodeRequest struct {
- LogScanningRequest
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type LogScanningRequest struct {
- Id uint `json:"id"`
- Supplier string `json:"supplier"`
- OrderNum string `json:"order_num"`
- GameId int `json:"game_id"`
- LogUuid string `json:"log_uuid"`
- Status int `json:"status"` // 1成功2失败
- TaskType int `json:"task_type"`
- CreateDate string `json:"create_date"`
- CreateTime string `json:"create_time"` // 创建时间
- }
- type GetDeviceStatisticsRequest struct {
- log.DeviceStatisticsReply
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type GetDeviceInfoLogRequest struct {
- log.DeviceLog
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
- type GetDeviceIdErrRequest struct {
- log.ScriptDeviceErr
- PageInfo
- OrderKey string `json:"orderKey"` // 排序
- Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
- }
|