Appearance
获取厂商列表 API
| Path | Method | Created At |
|---|---|---|
| /api/customers/suppliers/paginate | POST | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|---|---|
| page | integer,min:1,max:100 | 分页字段错误 |
| page_size | integer,min:5,max:1000 | 分页大小字段错误 |
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| id | string | 67735e | 厂商编号 |
| name | string | 浙江广铁 | 渠道名称 |
| agentLevel | string | 金牌代理 | 代理等级 |
| serviceLevel | string | 优秀 | 服务等级 |
| partnerRelationship | string | target | 合作关系 |
| recommendationIndex | string | 1 | 推荐指数 |
| createdByName | string | 张三 | 创建人姓名 |
| createdAt | string | 2024-01-02 03:05:06 | 创建时间 |
TypeScript Result Example:
TypeScript
interface Result {
/** 厂商编号 */
id: string;
/** 渠道名称 */
name: string;
/** 代理等级 */
agentLevel: string;
/** 服务等级 */
serviceLevel: string;
/** 合作关系 */
partnerRelationship: string;
/** 推荐指数 */
recommendationIndex: string;
/** 创建人姓名 */
createdByName: string;
/** 创建时间 */
createdAt: string;
}