- 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 Jxordersku2 struct {
type Jxordersku struct {
Id int `orm:"column(id);auto"`
VenderId int8 `orm:"column(vender_id);null"`
OrderId int64 `orm:"column(order_id);null"`
@@ -18,6 +16,6 @@ type Jxordersku2 struct {
SkuImg string `orm:"column(sku_img);size(120);null"`
}
func (t *Jxordersku2) TableName() string {
return globals.JxorderskuTableName
func (t *Jxordersku) TableName() string {
return "jxordersku"
}