You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
615 B
TypeScript
40 lines
615 B
TypeScript
import { PcdBaseDto } from "src/framework/custom/pcd-dto.custom";
|
|
|
|
export class ScbloanDto extends PcdBaseDto{
|
|
|
|
scbloanno:number;
|
|
|
|
branchCode:string;
|
|
|
|
loanNo:number;
|
|
|
|
custId:number;
|
|
|
|
loanType:string;
|
|
|
|
loanAmount:number;
|
|
|
|
loanTakenDate:Date;
|
|
|
|
maturityDate:Date;
|
|
|
|
closedDate:Date;
|
|
|
|
balanceAmount:number;
|
|
|
|
interestPercent:number;
|
|
|
|
noOfInstalment:number;
|
|
|
|
loanPurpose:string;
|
|
|
|
status:number;
|
|
elbAmount: number;
|
|
overDueInterest: number;
|
|
instalmentAmount: string;
|
|
noOfInstalmentDue: string;
|
|
totalAmountDue: string;
|
|
|
|
nextDueDate: Date;
|
|
|
|
} |