remove_dictionary.go 254 字节
package command

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

type RemoveDictionaryCommand struct {
	//操作人
	Operator     domain.Operator `json:"-"`
	DictionaryId int             `json:"dictionaryId,string"`
}