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.
22 lines
326 B
TypeScript
22 lines
326 B
TypeScript
import { PcdBaseEntity } from "src/framework/custom/pcd-entity.custom";
|
|
|
|
export class ScblockerDetailDto extends PcdBaseEntity {
|
|
|
|
branchCode: string;
|
|
|
|
scblockerno: number;
|
|
|
|
inttransno: number;
|
|
|
|
transactionDate: Date;
|
|
|
|
description: string;
|
|
|
|
transactionAmount: number;
|
|
|
|
createdBy: string;
|
|
|
|
createdDate: Date;
|
|
|
|
}
|