门店cid表

This commit is contained in:
苏尹岚
2020-09-11 17:16:26 +08:00
parent d05b37e762
commit 059b0c7557

View File

@@ -685,3 +685,15 @@ func (*StoreCategoryMap) TableUnique() [][]string {
[]string{"StoreID", "CategoryID", "DeletedAt"},
}
}
type StoreClientPush struct {
ModelIDCULD
StoreID int `orm:"column(store_id)" json:"storeID"`
ClientID string `orm:"column(client_id);size(255)" json:"clientID"`
}
func (*StoreClientPush) TableUnique() [][]string {
return [][]string{
[]string{"StoreID", "ClientID"},
}
}