前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AttachFile.ts 521B

1234567891011121314151617181920
  1. export class AttachFile {
  2. /**
  3. * 附件在服务方法中做为参数的位置
  4. */
  5. public AttachIndex: string;
  6. /**
  7. * 附件类型: 0:Table类型 1:Base基本类型 2:Byte数组类型
  8. */
  9. public AttachType: string;
  10. /**
  11. * 附件值
  12. */
  13. public AttachValue: any;
  14. constructor(attachIndex: string, attachType: string, attachValue: any) {
  15. this.AttachIndex = attachIndex;
  16. this.AttachType = attachType;
  17. this.AttachValue = attachValue;
  18. }
  19. }