feat 删除deleteAt字段
This commit is contained in:
parent
1da1fd27d8
commit
68e2a21402
@ -2,8 +2,6 @@ package v2
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Brand string
|
type Brand string
|
||||||
@ -17,7 +15,6 @@ type Article struct {
|
|||||||
ID uint `gorm:"primary_key" json:"id"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
|
||||||
|
|
||||||
Name string `gorm:"index" json:"name"`
|
Name string `gorm:"index" json:"name"`
|
||||||
|
|
||||||
|
@ -2,15 +2,12 @@ package v2
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type CalculateProcess struct {
|
type CalculateProcess struct {
|
||||||
ID uint `gorm:"primary_key" json:"id"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
|
||||||
//所有人ID
|
//所有人ID
|
||||||
OwnerID uint `gorm:"index" json:"ownerID"`
|
OwnerID uint `gorm:"index" json:"ownerID"`
|
||||||
// 所有者类型,是provider还是providerArticle还是Seller还是sellerArticle
|
// 所有者类型,是provider还是providerArticle还是Seller还是sellerArticle
|
||||||
|
@ -2,8 +2,6 @@ package v2
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ProviderId string
|
type ProviderId string
|
||||||
@ -12,7 +10,6 @@ type Provider struct {
|
|||||||
ID uint `gorm:"primary_key" json:"id"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
|
||||||
|
|
||||||
ProviderId ProviderId `gorm:"unique" json:"providerId"`
|
ProviderId ProviderId `gorm:"unique" json:"providerId"`
|
||||||
// 供应商的名称
|
// 供应商的名称
|
||||||
|
@ -2,8 +2,6 @@ package v2
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gorm.io/gorm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type SellerId string
|
type SellerId string
|
||||||
@ -13,7 +11,6 @@ type Seller struct {
|
|||||||
ID uint `gorm:"primary_key" json:"id"`
|
ID uint `gorm:"primary_key" json:"id"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
|
||||||
|
|
||||||
SellerId SellerId `gorm:"unique" json:"sellerId"`
|
SellerId SellerId `gorm:"unique" json:"sellerId"`
|
||||||
// 出货商的名称
|
// 出货商的名称
|
||||||
|
Loading…
Reference in New Issue
Block a user