update_dictionary.go 796 字节
package command

import (
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/infrastructure/service_gateway/allied_creation_basic"
)

type UpdateDictionaryCommand struct {
	//操作人
	Operator     domain.Operator                        `json:"-"`
	DictionaryId int64                                  `json:"-"`         // 字典编号 主键
	DictCode     string                                 `json:"dictCode"`  // 字典编码
	DictName     string                                 `json:"dictName"`  // 字典名称
	Describe     string                                 `json:"describe"`  // 备注信息
	DictItems    []allied_creation_basic.DictionaryItem `json:"dictItems"` // 字典值列表
}