@tomei/finance
Version:
NestJS package for finance module
17 lines • 478 B
TypeScript
import { Model } from 'sequelize-typescript';
import GroupTagModel from './tag-group.entity';
export default class TagModel extends Model {
TagId: string;
TagName: string;
TagGroupId: string;
CreatedById: string;
CreatedAt: Date;
UpdatedById: string;
UpdatedAt: Date;
AccSystemRefId: string;
PostedToAccSystemYN: string;
PostedById: string;
PostedDateTime: Date;
GroupTag: GroupTagModel;
}
//# sourceMappingURL=tag.entity.d.ts.map