param_dividends_estimate.go 1.8 KB
package allied_creation_cooperation

//确定预算分红激励
type (
	ReqDividendsEstimateIncentive struct {
	}

	DataDividendsEstimateIncentive struct {
	}
)

//更新分红预算
type (
	ReqDividendsEstimateUpdate struct {
	}

	DataDividendsEstimateUpdate struct {
	}
)

//查询业绩分红
type (
	ReqDividendsEstimateSearchDividend struct {
	}

	DataDividendsEstimateSearchDividend struct {
	}
)

//查询分红预算单
type (
	ReqDividendsEstimateSearch struct {
		DividendsType                int    `json:"dividendsType"`
		DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
		PageNumber                   int    `json:"pageNumber"`
		PageSize                     int    `json:"pageSize"`
	}

	DataDividendsEstimateSearch struct {
	}
)

//查询金额激励分红
type (
	ReqDividendsEstimateSearchMoney struct {
	}

	DataDividendsEstimateSearchMoney struct {
	}
)

//取消分红预算
type (
	ReqDividendsEstimateCancel struct {
		DividendsEstimateId int
	}

	DataDividendsEstimateCancel struct {
	}
)

//确定预算金额激励分红
type (
	ReqDividendsEstimateMoneyIncentives struct {
	}

	DataDividendsEstimateMoneyIncentives struct {
	}
)

//移除分红预算
type (
	ReqDividendsEstimateRemove struct {
		DividendsEstimateId int
	}

	DataDividendsEstimateRemove struct {
	}
)

//返回业绩激励分红详情
type (
	ReqDividendsEstimateListDividend struct {
	}

	DataDividendsEstimateListDividend struct {
	}
)

//返回分红预算列表
type (
	ReqDividendsEstimateList struct {
	}

	DataDividendsEstimateList struct {
	}
)

//返回分红预算详情
type (
	ReqDividendsEstimateGet struct {
		DividendsEstimateId int
	}

	DataDividendsEstimateGet struct {
	}
)

//返回金额激励分红列表
type (
	ReqDividendsEstimatesListMoney struct {
	}

	DataDividendsEstimatesListMoney struct {
	}
)