Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package model
// OrderReport order(manual) report model
type OrderReport struct {
ID int32 `json:"id"`
OrderID int64 `json:"order_id"`
Name string `json:"name"`
Content string `json:"content"`
UpdateBy string `json:"update_by" column:"update_by"`
Active int32 `json:"active"`
}
// TableName get table name model
func (w OrderReport) TableName() string {
return "order_report"
}