Newer
Older
xc-metering-front / src / views / laboratory / place / place-interface.ts
export interface IListQuery {
  locationName: string // 地点名称
  locationNo: string // 地点编号
  labName: string // 所属实验室
  limit: number
  offset: number
}

export interface IList {
  id: string
  locationName: string // 地点名称
  locationNo: string // 地点编号
  locationPosition: string // 地点位置
  createUser: string // 创建人
  createUserId: string// 创建人id
  createTime: string // 创建时间
  locationLab: string //
}

export interface IForm {
  createTime: string// 创建时间
  createUser: string// 创建人
  createUserId: string// 创建人id
  locationName: string// 地点名称
  locationNo: string// 地点编号
  locationPosition: string// 地点位置
  locationLab: string // 地点实验室
}