奖励类型新增门店相关 id
This commit is contained in:
@ -15,10 +15,14 @@ type RewardType struct {
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"`
|
||||
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"删除时间"`
|
||||
//StoreId int `json:"storeId" dc:"门店ID" orm:"store_id"`
|
||||
StoreName string `json:"storeName" dc:"门店名称" orm:"store_name"`
|
||||
}
|
||||
type RewardTypeIn struct {
|
||||
Page int
|
||||
Size int
|
||||
Page int
|
||||
Size int
|
||||
RoleName string
|
||||
OperatorId int
|
||||
}
|
||||
|
||||
type RewardTypeOut struct {
|
||||
@ -31,6 +35,7 @@ type CreateRewardTypeIn struct {
|
||||
Code string
|
||||
Description string
|
||||
Status int
|
||||
StoreId int
|
||||
}
|
||||
|
||||
type CreateRewardTypeOut struct {
|
||||
@ -44,6 +49,7 @@ type UpdateRewardTypeIn struct {
|
||||
Code string
|
||||
Description string
|
||||
Status int
|
||||
StoreId int
|
||||
}
|
||||
|
||||
// UpdateRewardTypeOut 更新奖励类型返回参数
|
||||
|
||||
Reference in New Issue
Block a user