kindergarten_java/reading-platform-frontend/src/api/generated/model/resourceItem.ts

44 lines
854 B
TypeScript
Raw Normal View History

/**
* 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;
}