/** 顶级实体 */
export interface BaseEntity {

  /** 主键 */
  id: string;

  /** 主键集合 */
  idList: Array<string>;

  /** 是否开发模式 */
  dev: string;
}