refactor: 인벤토리 테이블 스펙과 도메인 계층 정비
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
/// 공통 조회용 룩업 항목 엔티티.
|
||||
class LookupItem {
|
||||
LookupItem({
|
||||
required this.id,
|
||||
required this.name,
|
||||
this.code,
|
||||
this.isDefault = false,
|
||||
this.isActive = true,
|
||||
this.note,
|
||||
});
|
||||
|
||||
final int id;
|
||||
final String? code;
|
||||
final String name;
|
||||
final bool isDefault;
|
||||
final bool isActive;
|
||||
final String? note;
|
||||
}
|
||||
Reference in New Issue
Block a user