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.
85 lines
995 B
TypeScript
85 lines
995 B
TypeScript
import { IsNotEmpty } from "class-validator";
|
|
|
|
export class RtgsDto {
|
|
|
|
rtgsId: string;
|
|
|
|
brCode: string;
|
|
|
|
dayDt: string;
|
|
|
|
code: string;
|
|
|
|
@IsNotEmpty()
|
|
accNo: string;
|
|
|
|
@IsNotEmpty()
|
|
name: string;
|
|
|
|
@IsNotEmpty()
|
|
toAccNo: string;
|
|
|
|
@IsNotEmpty()
|
|
toParti: string;
|
|
|
|
toEmail: null;
|
|
|
|
toMobile: null;
|
|
|
|
@IsNotEmpty()
|
|
toBank: string;
|
|
|
|
@IsNotEmpty()
|
|
toBranch: string;
|
|
|
|
@IsNotEmpty()
|
|
ifscCode: string;
|
|
|
|
cashAdj: string;
|
|
|
|
payMode: string;
|
|
|
|
remarks: string;
|
|
|
|
uploadStatus: string;
|
|
|
|
credit: null;
|
|
|
|
@IsNotEmpty()
|
|
debit: number;
|
|
|
|
slipNo: number;
|
|
|
|
clerk: string;
|
|
|
|
cashier: string;
|
|
|
|
manager: string;
|
|
|
|
clerkId: number;
|
|
|
|
mgrId: number;
|
|
|
|
cashierId: null;
|
|
|
|
rejectReason: null;
|
|
|
|
entryTime: string;
|
|
|
|
appScr: string;
|
|
|
|
@IsNotEmpty()
|
|
commAmt: number;
|
|
|
|
chNo: null;
|
|
|
|
chDate: null;
|
|
|
|
dayDate: any;
|
|
|
|
@IsNotEmpty()
|
|
depType: any;
|
|
|
|
dayBeginDt: any;
|
|
}
|