// docu-list-rule 모듈 공통 타입 정의 export interface NumberTypeConfig { id: number documentNumberTypeId: number codeGroupId: number | null sdq: number description: string | null delimiter:string | null remark: string | null isActive: boolean | null createdAt: Date updatedAt: Date codeGroupName: string | null codeGroupControlType: string | null } export interface CodeGroup { id: number groupId: string description: string codeFormat: string | null expressions: string | null controlType: string isActive: boolean createdAt: Date updatedAt: Date projectId: number projectCode: string | null projectName: string | null } export interface DocumentClass { id: number code: string value: string description: string | null codeGroupId: number | null isActive: boolean createdAt: Date updatedAt: Date projectId: number projectCode: string | null projectName: string | null } export interface NumberType { id: number name: string description: string | null isActive: boolean createdAt: Date updatedAt: Date projectId: number projectCode: string | null projectName: string | null }