+api UploadFakeJdThingMap

This commit is contained in:
gazebo
2020-01-14 17:37:13 +08:00
parent aad6c2c9b6
commit b9f74f8a13
11 changed files with 469 additions and 8 deletions

14
business/model/fake_jd.go Normal file
View File

@@ -0,0 +1,14 @@
package model
type FakeJdThingMap struct {
ModelIDCUL
JxID int `orm:"column(jx_id)" json:"jxID"`
ThingType int `json:"thingType"`
JdID int64 `orm:"column(jd_id);unique" json:"jdID"`
}
func (*FakeJdThingMap) TableUnique() [][]string {
return [][]string{
[]string{"JxID", "ThingType"},
}
}