|
|
@@ -758,109 +758,6 @@ export interface DocumentUpdateMenuInput {
|
|
|
id: number
|
|
|
}
|
|
|
|
|
|
-export interface DynamicFilterInfo {
|
|
|
- field?: string | null
|
|
|
- /** Contains=0,StartsWith=1,EndsWith=2,NotContains=3,NotStartsWith=4,NotEndsWith=5,Equal=6,Equals=7,Eq=8,NotEqual=9,GreaterThan=10,GreaterThanOrEqual=11,LessThan=12,LessThanOrEqual=13,Range=14,DateRange=15,Any=16,NotAny=17,Custom=18 */
|
|
|
- operator?: DynamicFilterOperator
|
|
|
- value?: any
|
|
|
- /** And=0,Or=1 */
|
|
|
- logic?: DynamicFilterLogic
|
|
|
- filters?: DynamicFilterInfo[] | null
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * And=0,Or=1
|
|
|
- * @format int32
|
|
|
- */
|
|
|
-export type DynamicFilterLogic = 0 | 1
|
|
|
-
|
|
|
-/**
|
|
|
- * Contains=0,StartsWith=1,EndsWith=2,NotContains=3,NotStartsWith=4,NotEndsWith=5,Equal=6,Equals=7,Eq=8,NotEqual=9,GreaterThan=10,GreaterThanOrEqual=11,LessThan=12,LessThanOrEqual=13,Range=14,DateRange=15,Any=16,NotAny=17,Custom=18
|
|
|
- * @format int32
|
|
|
- */
|
|
|
-export type DynamicFilterOperator = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18
|
|
|
-
|
|
|
-export interface FileDeleteInput {
|
|
|
- /**
|
|
|
- * 文件Id
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- id: number
|
|
|
-}
|
|
|
-
|
|
|
-/** 文件 */
|
|
|
-export interface FileEntity {
|
|
|
- /**
|
|
|
- * 主键Id
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- id?: number
|
|
|
- /**
|
|
|
- * 创建者Id
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- createdUserId?: number | null
|
|
|
- /**
|
|
|
- * 创建者
|
|
|
- * @maxLength 50
|
|
|
- */
|
|
|
- createdUserName?: string | null
|
|
|
- /**
|
|
|
- * 创建时间
|
|
|
- * @format date-time
|
|
|
- */
|
|
|
- createdTime?: string | null
|
|
|
- /**
|
|
|
- * 修改者Id
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- modifiedUserId?: number | null
|
|
|
- /**
|
|
|
- * 修改者
|
|
|
- * @maxLength 50
|
|
|
- */
|
|
|
- modifiedUserName?: string | null
|
|
|
- /**
|
|
|
- * 修改时间
|
|
|
- * @format date-time
|
|
|
- */
|
|
|
- modifiedTime?: string | null
|
|
|
- /** 是否删除 */
|
|
|
- isDeleted?: boolean
|
|
|
- /** Invalid=0,Minio=1,Aliyun=2,QCloud=3,Qiniu=4,HuaweiCloud=5 */
|
|
|
- provider?: OSSProvider
|
|
|
- /** 存储桶名称 */
|
|
|
- bucketName?: string | null
|
|
|
- /** 文件目录 */
|
|
|
- fileDirectory?: string | null
|
|
|
- /**
|
|
|
- * 文件Guid
|
|
|
- * @format uuid
|
|
|
- */
|
|
|
- fileGuid?: string
|
|
|
- /** 保存文件名 */
|
|
|
- saveFileName?: string | null
|
|
|
- /** 文件名 */
|
|
|
- fileName?: string | null
|
|
|
- /** 文件扩展名 */
|
|
|
- extension?: string | null
|
|
|
- /**
|
|
|
- * 文件字节长度
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- size?: number
|
|
|
- /** 文件大小格式化 */
|
|
|
- sizeFormat?: string | null
|
|
|
- /** 链接地址 */
|
|
|
- linkUrl?: string | null
|
|
|
- /** md5码,防止上传重复文件 */
|
|
|
- md5?: string | null
|
|
|
-}
|
|
|
-
|
|
|
-export interface FileGetPageDto {
|
|
|
- /** 文件名 */
|
|
|
- fileName?: string | null
|
|
|
-}
|
|
|
|
|
|
export interface FileGetPageOutput {
|
|
|
/**
|
|
|
@@ -981,11 +878,7 @@ export interface LoginLogListOutput {
|
|
|
createdTime?: string | null
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * Invalid=0,Minio=1,Aliyun=2,QCloud=3,Qiniu=4,HuaweiCloud=5
|
|
|
- * @format int32
|
|
|
- */
|
|
|
-export type OSSProvider = 0 | 1 | 2 | 3 | 4 | 5
|
|
|
+
|
|
|
|
|
|
/** 添加 */
|
|
|
export interface OprationLogAddInput {
|
|
|
@@ -1303,21 +1196,7 @@ export interface PageInputDictTypeGetPageDto {
|
|
|
filter?: DictTypeGetPageDto
|
|
|
}
|
|
|
|
|
|
-/** 分页信息输入 */
|
|
|
-export interface PageInputFileGetPageDto {
|
|
|
- /**
|
|
|
- * 当前页标
|
|
|
- * @format int32
|
|
|
- */
|
|
|
- currentPage?: number
|
|
|
- /**
|
|
|
- * 每页大小
|
|
|
- * @format int32
|
|
|
- */
|
|
|
- pageSize?: number
|
|
|
- dynamicFilter?: DynamicFilterInfo
|
|
|
- filter?: FileGetPageDto
|
|
|
-}
|
|
|
+
|
|
|
|
|
|
/** 分页信息输入 */
|
|
|
export interface PageInputLogGetPageDto {
|
|
|
@@ -2575,17 +2454,7 @@ export interface ResultOutputDocumentGetMenuOutput {
|
|
|
data?: DocumentGetMenuOutput
|
|
|
}
|
|
|
|
|
|
-/** 结果输出 */
|
|
|
-export interface ResultOutputFileEntity {
|
|
|
- /** 是否成功标记 */
|
|
|
- success?: boolean
|
|
|
- /** 编码 */
|
|
|
- code?: string | null
|
|
|
- /** 消息 */
|
|
|
- msg?: string | null
|
|
|
- /** 文件 */
|
|
|
- data?: FileEntity
|
|
|
-}
|
|
|
+
|
|
|
|
|
|
/** 结果输出 */
|
|
|
export interface ResultOutputIEnumerableObject {
|
|
|
@@ -2662,17 +2531,7 @@ export interface ResultOutputListDocumentListOutput {
|
|
|
data?: DocumentListOutput[] | null
|
|
|
}
|
|
|
|
|
|
-/** 结果输出 */
|
|
|
-export interface ResultOutputListFileEntity {
|
|
|
- /** 是否成功标记 */
|
|
|
- success?: boolean
|
|
|
- /** 编码 */
|
|
|
- code?: string | null
|
|
|
- /** 消息 */
|
|
|
- msg?: string | null
|
|
|
- /** 数据 */
|
|
|
- data?: FileEntity[] | null
|
|
|
-}
|
|
|
+
|
|
|
|
|
|
/** 结果输出 */
|
|
|
export interface ResultOutputListInt64 {
|
|
|
@@ -4541,75 +4400,11 @@ export interface ViewUpdateInput {
|
|
|
|
|
|
|
|
|
|
|
|
-/** 结果输出 */
|
|
|
-export interface ResultOutputPageComponentGetPageOutPut {
|
|
|
- /** 是否成功标记 */
|
|
|
- success?: boolean
|
|
|
- /** 编码 */
|
|
|
- code?: string | null
|
|
|
- /** 消息 */
|
|
|
- msg?: string | null
|
|
|
- /** 分页信息输出 */
|
|
|
- data?: PageOutputPageComponentGetPage
|
|
|
-}
|
|
|
-
|
|
|
-export interface PageOutputPageComponentGetPage{
|
|
|
- /**
|
|
|
- * 数据总数
|
|
|
- * @format int64
|
|
|
- */
|
|
|
- total?: number
|
|
|
- /** 数据 */
|
|
|
- list?: ComponentGetPageOutPut[] | null
|
|
|
-}
|
|
|
|
|
|
-/**部件列表对象 */
|
|
|
-export interface ComponentGetPageOutPut{
|
|
|
- /**序号 */
|
|
|
- guid: number
|
|
|
|
|
|
- /**部件名称 */
|
|
|
- bomName:string | null
|
|
|
|
|
|
- /**部件编号 */
|
|
|
- bomNo:string | null
|
|
|
- bomProNo: string | null
|
|
|
- cpuId:string | null
|
|
|
- software_v: string | null
|
|
|
- status: number
|
|
|
- key_name: number
|
|
|
- stand_name:number
|
|
|
- createTime: Date
|
|
|
- remark:string |null
|
|
|
-}
|
|
|
|
|
|
-/** 分页信息输入 */
|
|
|
-export interface PageInputComponentGetPageDto {
|
|
|
- /**
|
|
|
- * 当前页标
|
|
|
- * @format int32
|
|
|
- */
|
|
|
- currentPage?: number
|
|
|
- /**
|
|
|
- * 每页大小
|
|
|
- * @format int32
|
|
|
- */
|
|
|
- pageSize?: number
|
|
|
- dynamicFilter?: DynamicFilterInfo
|
|
|
- filter?: ComponentGetPageDto
|
|
|
-}
|
|
|
|
|
|
|
|
|
-/**部件列表对象 */
|
|
|
-export interface ComponentGetPageDto{
|
|
|
|
|
|
- /**部件名称 */
|
|
|
- bomName:string | null
|
|
|
- /**部件编号 */
|
|
|
- bomNo:string | null
|
|
|
- bomProNo: string | null
|
|
|
- bomMateNo:string | null
|
|
|
- bomType: number
|
|
|
- status: number
|
|
|
|
|
|
-}
|