2026-03-13 13:48:28 +08:00
|
|
|
/**
|
|
|
|
|
* Generated by orval v8.5.3 🍺
|
|
|
|
|
* Do not edit manually.
|
|
|
|
|
* Reading Platform API
|
|
|
|
|
* Reading Platform Backend Service API Documentation
|
|
|
|
|
* OpenAPI spec version: 1.0.0
|
|
|
|
|
*/
|
|
|
|
|
|
2026-03-16 10:45:15 +08:00
|
|
|
/**
|
|
|
|
|
* 资源项实体
|
|
|
|
|
*/
|
2026-03-13 13:48:28 +08:00
|
|
|
export interface ResourceItem {
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 主键 ID */
|
|
|
|
|
id?: number;
|
|
|
|
|
/** 创建人 */
|
|
|
|
|
createBy?: string;
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
createdAt?: string;
|
|
|
|
|
/** 更新人 */
|
|
|
|
|
updateBy?: string;
|
|
|
|
|
/** 更新时间 */
|
|
|
|
|
updatedAt?: string;
|
|
|
|
|
/** 资源库 ID */
|
2026-03-13 13:48:28 +08:00
|
|
|
libraryId?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 租户 ID */
|
2026-03-13 13:48:28 +08:00
|
|
|
tenantId?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 资源类型 */
|
2026-03-13 13:48:28 +08:00
|
|
|
type?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 资源名称 */
|
2026-03-13 13:48:28 +08:00
|
|
|
name?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 资源编码 */
|
2026-03-13 13:48:28 +08:00
|
|
|
code?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 资源描述 */
|
2026-03-13 13:48:28 +08:00
|
|
|
description?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 数量 */
|
2026-03-13 13:48:28 +08:00
|
|
|
quantity?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 可用数量 */
|
2026-03-13 13:48:28 +08:00
|
|
|
availableQuantity?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 存放位置 */
|
2026-03-13 13:48:28 +08:00
|
|
|
location?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 状态 */
|
2026-03-13 13:48:28 +08:00
|
|
|
status?: string;
|
|
|
|
|
}
|