/** * 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 */ /** * 资源项实体 */ export interface ResourceItem { /** 主键 ID */ id?: number; /** 创建人 */ createBy?: string; /** 创建时间 */ createdAt?: string; /** 更新人 */ updateBy?: string; /** 更新时间 */ updatedAt?: string; /** 资源库 ID */ libraryId?: string; /** 租户 ID */ tenantId?: string; /** 资源类型 */ type?: string; /** 资源名称 */ name?: string; /** 资源编码 */ code?: string; /** 资源描述 */ description?: string; /** 数量 */ quantity?: number; /** 可用数量 */ availableQuantity?: number; /** 存放位置 */ location?: string; /** 状态 */ status?: string; }