project-receivables-upload.ts 265 B

12345678910111213
  1. import { Page } from '../page';
  2. export class ProjectReceivablesUpload extends Page {
  3. id?: string;
  4. /**项目因收款id*/
  5. projectId?: string;
  6. /**文件地址*/
  7. fileUrl?: string;
  8. /**排序*/
  9. sort?: string;
  10. /**备注*/
  11. memo?: string;
  12. }