lzh-common 0.0.572 → 0.0.573

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,3 @@
1
1
  export * from "./base.js";
2
+ export * from "./system.js";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/abnormal_operation_log/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/abnormal_operation_log/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC"}
@@ -1 +1,2 @@
1
1
  export * from "./base.js";
2
+ export * from "./system.js";
@@ -0,0 +1,21 @@
1
+ import { IF2ePaginationReqData } from "../http.js";
2
+ import { IAbnormalOperationLogDB } from "./base.js";
3
+ /**
4
+ * 请求参数:列表
5
+ **/
6
+ export type IAbnormalOperationLogSystemListReq = IF2ePaginationReqData & {
7
+ filters?: {
8
+ id?: IAbnormalOperationLogDB['id'];
9
+ /** 描述关键词(LIKE 查询) */
10
+ description?: string;
11
+ /** 创建时间-开始 */
12
+ create_time_start?: string;
13
+ /** 创建时间-结束 */
14
+ create_time_end?: string;
15
+ };
16
+ };
17
+ /**
18
+ * 返回参数:列表
19
+ **/
20
+ export type IAbnormalOperationLogSystemListRes = IAbnormalOperationLogDB;
21
+ //# sourceMappingURL=system.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"system.d.ts","sourceRoot":"","sources":["../../src/abnormal_operation_log/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEpD;;IAEI;AACJ,MAAM,MAAM,kCAAkC,GAAG,qBAAqB,GAAG;IACvE,OAAO,CAAC,EAAE;QACR,EAAE,CAAC,EAAE,uBAAuB,CAAC,IAAI,CAAC,CAAC;QACnC,qBAAqB;QACrB,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,cAAc;QACd,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,cAAc;QACd,eAAe,CAAC,EAAE,MAAM,CAAC;KAC1B,CAAC;CACH,CAAC;AAEF;;IAEI;AACJ,MAAM,MAAM,kCAAkC,GAAG,uBAAuB,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lzh-common",
3
- "version": "0.0.572",
3
+ "version": "0.0.573",
4
4
  "description": "Shared TypeScript interfaces",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",