Skip to content

中标 API

PathMethodCreated At
/api/business/opportunities/award/PUT2025-11-29 00:39:11

Request

KeyRuleDescription
idstring,size:24trans:validate.BO_NOT_FOUND
amountdecimal:0,2,min:0.0000中标金额格式错误
datedate_format:Y-m-d中标日期格式错误:年-月-日
titlestring,max:64标题不能超过64个字符

Response

KeyTypeExampleComment
codeint0编号:0表示成功,非0表示错误
messagestringsuccess成功为 success, 失败则错误消息

TypeScript Result Example:

TypeScript
interface Result {
  /** 编号:0表示成功,非0表示错误 */
  code: number;
  /** 成功为 success, 失败则错误消息 */
  message: string;
}