1234567891011121314151617181920 |
- export class AttachFile {
- /**
- * 附件在服务方法中做为参数的位置
- */
- public AttachIndex: string;
- /**
- * 附件类型: 0:Table类型 1:Base基本类型 2:Byte数组类型
- */
- public AttachType: string;
- /**
- * 附件值
- */
- public AttachValue: any;
-
- constructor(attachIndex: string, attachType: string, attachValue: any) {
- this.AttachIndex = attachIndex;
- this.AttachType = attachType;
- this.AttachValue = attachValue;
- }
- }
|