import { Model } from 'sequelize-typescript';
import FinanceCompanyModel from './finance-company.entity';
export default class FinanceCustomerModel extends Model {
    CustomerId: string;
    CompanyId: string;
    CustSystemCode: string;
    CustSystemRefId: string;
    AccSystemRefId: string;
    PostedToAccSystemYN: string;
    PostedById: string;
    PostedDateTime: Date;
    FinanceCompany: FinanceCompanyModel;
}
//# sourceMappingURL=customer.entity.d.ts.map