package command

type SavePositionCommand struct {
	//职位ID
	Id int64 `json:"id"`
	//公司ID
	CompanyId int64 `json:"company_id"`
	//职位名称
	Name string `json:"name"`
	//父级职位ID
	ParentId int64 `json:"parent_id"`
	//职位路径
	Path string `json:"path"`
	//职位层级
	Level int `json:"level"`
}