办学质量监测教学评价系统
Flex
2 天以前 48954e86178c5c3d95f64b59d9a88f22a51ff1ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export interface Template {
  id?: string | number;          // 主键
  formData: string;                  // 模版名称
  pageDesignId: string | number; // 关联的页面设计ID
  createTime?: string;           // 创建时间
  updateTime?: string;           // 更新时间
  pageDesign?: {                 // 关联的页面设计信息
    id: string | number;
    name: string;
    formJson?: string;
    showColumn?: string;
    actionsFunc?: string;
  } | null;