package dao import "gitlab.wodcloud.com/apaas/apaas-meshproxy/src/tools" type Service_request_record struct { Id int `json:"id" xorm:"id"` Service_id int `json:"service_id" xorm:"service_id"` Apply_id int `json:"apply_id" xorm:"apply_id"` User_id string `json:"user_id" xorm:"user_id"` Request_time tools.JsonTime `json:"request_time" xorm:"request_time created"` Date_day int `json:"date_day" xorm:"date_day"` Date_month int `json:"date_month" xorm:"date_month"` Date_year int `json:"date_year" xorm:"date_year"` Status int `json:"status" xorm:"status"` Error string `json:"error" xorm:"error"` } func (s Service_request_record) TableName() string { return "service_request_record" }