disable_order.go 236 字节
package command

//DisableOrderCommand 开启关闭订单
type DisableOrderCommand struct {
	OrderId   int64 `json:"orderId"`
	IsDisable int   `json:"isDisable"`
	OrderType int   `json:"orderType"`
	CompanyId int64 `json:"companyId"`
}