GroupDataDTO.ets 284 Bytes
/**
 * 对应服务器返回的group数据
 */
import { CompDataDTO } from './CompDataDTO';
import { ItemDTO } from './ItemDTO';

export class GroupDataDTO extends ItemDTO {
  id: string; // Group主键ID
  name: string; // 名称
  branchMark: boolean;
  components: CompDataDTO[];
}