remove_dictionary.go 250 字节
package command

import "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"

type RemoveDictionaryCommand struct {
	//操作人
	Operator      domain.Operator `json:"-"`
	DictionaryIds []string        `json:"dictionaryIds"`
}