@tomei/rental
Version:
Tomei Rental Package
18 lines (17 loc) • 660 B
TypeScript
import { ObjectBase } from '@tomei/general';
import { IAgreementHistoryAttr } from '../../interfaces/agreement-history-attr.interface';
export declare class AgreementHistory extends ObjectBase implements IAgreementHistoryAttr {
ObjectId: string;
ObjectName: string;
ObjectType: string;
TableName: string;
AgreementNo: string;
ActivityCompleted: string;
MediaId: string;
CreatedAt: Date;
private static _Repo;
get HistoryId(): number;
set HistoryId(value: number);
protected constructor(agreementAttr?: IAgreementHistoryAttr);
static init(historyId: number, dbTransaction?: any): Promise<AgreementHistory>;
}