Skip to content

获取商机详情 API

PathMethodCreated At
/api/business/opportunities/{id}/detailGET2025-11-29 00:39:11

Request

KeyRuleDescription
idstring,size:24trans:validate.BO_NOT_FOUND

Response

KeyTypeExampleComment
idstring675143aea72eba31e807f9d2编号
boNostring32ade商机编号
namestring浙江省JW监委外网项目标题
customerIdstring2客户编号
customerNamestring襄阳城坊客户名称
industryIdint3行业ID
industryPatharray["政府", "公安", "司法"]行业
projectLevelint4项目等级编号
projectLevelNamestring公司级项目项目级别名称
projectTypeint5项目类型编号
projectTypeNamestring服务器项目类型名称
currentStagestringpromote_bidding_process项目阶段名称
currentStageTextstring招投标 > 推进招标流程项目阶段名称
projectCertaintyint7项目把握度编号
projectCertaintyNamestring有把握项目把握度
totalAmountstring300000项目金额
projectJoinMethodint8项目参与方式编号
estimatedSigningDatestring2006-07-08 09:10:11预计签约时间
agentIdstring67c266000代理编号
createdAtstring2025-01-08 15:30:00创建时间
createdByint10创建人编号
createdByNamestring张三创建人姓名
techLeadIdint11技术负责人编号
techLeadNamestring周伯通技术负责人名称
salesLeadIdint12销售负责人编号
salesLeadNamestring老顽童销售负责人名字
bidTimestring2024-12-18投标时间
isAwardedbooltrue是否中标
isLoseTagbooltrue是否丢单
isDirectContractbooltrue是否直签
reportStatusstring已报备报备情况

TypeScript Result Example:

TypeScript
interface Result {
  /** 编号 */
  id: string;
  /** 商机编号 */
  boNo: string;
  /** 标题 */
  name: string;
  /** 客户编号 */
  customerId: string;
  /** 客户名称 */
  customerName: string;
  /** 行业ID */
  industryId: number;
  /** 行业 */
  industryPath: any;
  /** 项目等级编号 */
  projectLevel: number;
  /** 项目级别名称 */
  projectLevelName: string;
  /** 项目类型编号 */
  projectType: number;
  /** 项目类型名称 */
  projectTypeName: string;
  /** 项目阶段名称 */
  currentStage: string;
  /** 项目阶段名称 */
  currentStageText: string;
  /** 项目把握度编号 */
  projectCertainty: number;
  /** 项目把握度 */
  projectCertaintyName: string;
  /** 项目金额 */
  totalAmount: string;
  /** 项目参与方式编号 */
  projectJoinMethod: number;
  /** 预计签约时间 */
  estimatedSigningDate: string;
  /** 代理编号 */
  agentId: string;
  /** 创建时间 */
  createdAt: string;
  /** 创建人编号 */
  createdBy: number;
  /** 创建人姓名 */
  createdByName: string;
  /** 技术负责人编号 */
  techLeadId: number;
  /** 技术负责人名称 */
  techLeadName: string;
  /** 销售负责人编号 */
  salesLeadId: number;
  /** 销售负责人名字 */
  salesLeadName: string;
  /** 投标时间 */
  bidTime: string;
  /** 是否中标 */
  isAwarded: any;
  /** 是否丢单 */
  isLoseTag: any;
  /** 是否直签 */
  isDirectContract: any;
  /** 报备情况 */
  reportStatus: string;
}