1
This commit is contained in:
@@ -33,6 +33,28 @@ func (c *LaKaLaController) LaKaLaApplyContract() {
|
||||
})
|
||||
}
|
||||
|
||||
// LaKaLaApplyContractByPeople 拉卡拉商户合同申请,人工审核
|
||||
// @Title 拉卡拉商户合同申请,人工审核
|
||||
// @Description 拉卡拉商户合同申请,人工审核
|
||||
// @Param token header string true "认证token"
|
||||
// @Param payload formData string true "json数据,lakala.ApplyContractByPeople 对象"
|
||||
// @Param storeID formData int true "门店ID"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /LaKaLaApplyContractByPeople [post]
|
||||
func (c *LaKaLaController) LaKaLaApplyContractByPeople() {
|
||||
c.callLaKaLaApplyContractByPeople(func(params *tLakalaLaKaLaApplyContractByPeopleParams) (retVal interface{}, errCode string, err error) {
|
||||
contract := &lakala.ApplyContractByPeople{}
|
||||
err = utils.UnmarshalUseNumber([]byte(params.Payload), contract)
|
||||
if err != nil {
|
||||
return retVal, "", err
|
||||
}
|
||||
|
||||
retVal, err = lakalaServer.LaKaLaApplyContractByPeople(params.StoreID, contract)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// QueryElectronicContract 合同申请状态查询
|
||||
// @Title 合同申请状态查询
|
||||
// @Description 合同申请状态查询
|
||||
|
||||
Reference in New Issue
Block a user