123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel'
- /**
- * @description: Request list interface parameters
- */
- export type ProjectListParams = BasicPageParams & { search?: string; insideCategoryId?: string }
- export interface ProjectListItem {
- id: string
- code: string
- name: string
- userId: string
- userAccount: string
- categoryId: string
- category: string
- staffId: string
- staffName: string
- staffQq: string
- staffPhone: string
- staffTelephone: string
- createTime: string
- createName: string
- createCategory: string
- insideCategoryId: string
- insideCategory: string
- remark: string
- status: number
- }
- export type ProjectDetailParams = {
- id: string
- name: string
- insideCategoryId: string
- insideCategory: string
- categoryId: string
- category: string
- staffId: string
- staffName: string
- remark: string
- status: string
- }
- /**
- * @description: Request list return value
- */
- export type ProjectListGetResultModel = BasicFetchResult<ProjectListItem[]>
|