import { Model } from 'sequelize-typescript';
export default class FinancePostHistoryModel extends Model {
    PostId: string;
    DateTime: Date;
    ItemId: string;
    ItemType: string;
    ItemValue: string;
    PostedById: string;
    AccSystemCode: string;
    AccSystemRefId: string;
}
//# sourceMappingURL=post-history.entity.d.ts.map