onsitesurvey/src/types/Suitable.ts

44 lines
900 B
TypeScript

export enum SUITABLE_HEAD_CODE {
/* 지붕재 제조사명 */
MANU_FT_CD = 'MANU_FT_CD',
/* 지붕재 종류 */
ROOF_MT_CD = 'ROOF_MT_CD',
/* 마운팅 브래킷 종류 */
ROOF_SH_CD = 'ROOF_SH_CD',
/* 마운팅 브래킷 제조사명 및 제품코드드 */
TRESTLE_MFPC_CD = 'TRESTLE_MFPC_CD',
}
export type SuitableMain = {
id: number
productName: string
manuFtCd: string
roofMtCd: string
roofShCd: string
}
export type SuitableDetail = {
id: number
mainId: number
trestleMfpcCd: string
trestleManufacturerProductName: string
memo: string
}
// export type Suitable = {
// id: number
// productName: string
// manuFtCd: string
// roofMtCd: string
// roofShCd: string
// detail: string
// }
export type SuitableDetailGroup = {
mainId: number
detail: string
}
export type Suitable = {
suitable: SuitableMain[]
detail: SuitableDetailGroup[]
}