add supplier entity

This commit is contained in:
fadlydev
2024-12-28 12:00:26 +07:00
parent 20d7d96f62
commit 2cfcfccfaa
3 changed files with 100 additions and 18 deletions

View File

@ -36,6 +36,7 @@ import { Summarize } from "./entity/summarizes";
import { SummarizeLog } from "./entity/summarize_log";
import { SummarizeLogStatus, SummarizeType } from "./types/summarize";
import { Goods } from "./entity/goods";
import { Supplier } from "./entity/supplier";
export {
User, //
@ -78,5 +79,6 @@ export {
SummarizeLog,
SummarizeLogStatus,
SummarizeType,
Goods
Goods,
Supplier
};