- UpdateStoresSkusSale

This commit is contained in:
gazebo
2018-10-16 15:01:59 +08:00
parent d7b93b8bf2
commit ac76040e99
11 changed files with 118 additions and 50 deletions

View File

@@ -1,8 +1,6 @@
package legacymodel
import "git.rosy.net.cn/jx-callback/globals"
type Jxorder2 struct {
type Jxorder struct {
Id int `orm:"column(id);auto"`
VenderId int8 `orm:"column(vender_id);null"`
OrderId int64 `orm:"column(order_id);null;unique"`
@@ -56,6 +54,6 @@ type Jxorder2 struct {
IsRecallDelivery int `orm:"column(is_recall_delivery);default(0);null"`
}
func (t *Jxorder2) TableName() string {
return globals.JxorderTableName
func (t *Jxorder) TableName() string {
return "jxorder"
}