1
2
3
4
5
6
export interface Problem {
  /** true正常  false异常 */
  CheckResult: boolean
  ItemCode: string
  ItemName: string
}