@ningboyz/types 1.4.177 → 1.4.178

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.4.177",
4
+ "version": "1.4.178",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -52,6 +52,10 @@ export interface ILaidResponse extends IBaseResponse<ILaidResponse> {
52
52
  isPublic: number;
53
53
  isCommon: number; // #1:公务仓;0:普通存放地点
54
54
  sysclasc: number; // , 模块大类
55
+ laidAddr: string; // #存放地点.地址
56
+ laidDate: number; // #存放地点.日期
57
+ laidCall: string; // #存放地点.联系电话
58
+
55
59
  /**
56
60
  * 所属部门
57
61
  * */
@@ -64,6 +68,8 @@ export interface ILaidResponse extends IBaseResponse<ILaidResponse> {
64
68
  * 部门权限
65
69
  * */
66
70
  listDept: IDeptResponse[];
71
+ // 附件
72
+ listPath: TCore.IPathResponse[];
67
73
  }
68
74
 
69
75
  export class TLaidResponse extends TBaseResponse<ILaidResponse> implements ILaidResponse {
@@ -116,6 +122,10 @@ export class TLaidResponse extends TBaseResponse<ILaidResponse> implements ILaid
116
122
  isCommon: number = 0;
117
123
  deptMain: number = 0;
118
124
  listDept: IDeptResponse[] = [];
125
+ listPath: TCore.IPathResponse[] = [];
126
+ laidAddr: string = "";
127
+ laidDate: number = 0;
128
+ laidCall: string = "";
119
129
 
120
130
  public static toTree(listLaid: ILaidResponse[]) {
121
131
  return construct(listLaid, { id: "laidIndx", pid: "parentID", children: "children" }) as ILaidResponse[];