This commit is contained in:
苏尹岚
2020-12-25 10:53:05 +08:00
parent 0210024dc4
commit e3c422c5a3
5 changed files with 41 additions and 0 deletions

View File

@@ -1457,3 +1457,7 @@ func RefreshDropShippingJob(ctx *jxcontext.Context) (err error) {
task.GetID()
return err
}
func AddressDistinguish(ctx *jxcontext.Context, address string) (err error) {
return err
}

View File

@@ -318,3 +318,16 @@ type OilInfo struct {
OilgunCodes []string `json:"oilgunCodes"`
OilCode string `json:"oilCode"`
}
type AddressDistinguish struct {
ModelIDCUL
Address string `json:"address"`
Info string `orm:"type(text)" json:"info"`
}
func (v *AddressDistinguish) TableUnique() [][]string {
return [][]string{
[]string{"Address"},
}
}