GroupDTO.ets 627 Bytes
import { CompDTO } from './CompDTO';
import { ItemDTO } from './ItemDTO';
import { OsVersion } from './OsVersion';

export class GroupDTO extends ItemDTO {
  id: string; // group主键ID
  name: string; // 名称
  branchMark: boolean;
  fitArea?: string[];
  components: CompDTO[]; // Components集合的布局信息
  platformId?: string[];
  iosVersion?: OsVersion;
  androidVersion?: OsVersion;
  userType?: string[];
  isSegmentLine?: string;
  isPopup?: string;
  ipadVersion?: OsVersion;
  vrVersion?: OsVersion;
  groupType?: string;
  fitTelecomOperators?: string[];
  channelCode?: string;
  removeRepeat?: boolean;
}