11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
import { UserDateAuditEntity } from 'src/modules/common/data/model/audit';
|
|
import { NoticeStateName } from '../type/notice-state.type';
|
|
|
|
export interface NoticeBoard extends UserDateAuditEntity {
|
|
id?: number;
|
|
title?: string;
|
|
contents?: string;
|
|
attachFile?: number;
|
|
noticeType?: NoticeStateName;
|
|
}
|