add goods entity

This commit is contained in:
fadlydev
2024-12-25 21:53:24 +07:00
parent 8f074e4199
commit fb4d6a321b
2 changed files with 84 additions and 1 deletions

View File

@ -35,6 +35,7 @@ import { CategoryType } from "./types/category";
import { Summarize } from "./entity/summarizes";
import { SummarizeLog } from "./entity/summarize_log";
import { SummarizeLogStatus, SummarizeType } from "./types/summarize";
import { Goods } from "./entity/goods";
export {
User, //
@ -76,5 +77,6 @@ export {
Summarize,
SummarizeLog,
SummarizeLogStatus,
SummarizeType
SummarizeType,
Goods
};