.
This commit is contained in:
@@ -2,6 +2,12 @@ export interface IStateDrop {
|
||||
income: IDropAct[];
|
||||
expense: IDropAct[];
|
||||
}
|
||||
export interface IBudgetItem {
|
||||
id?: number; // เอาไว้เช็คตอน Edit
|
||||
code: string;
|
||||
name: string;
|
||||
amount: number;
|
||||
}
|
||||
|
||||
export interface IDropAct {
|
||||
dtlnam?: string,
|
||||
@@ -22,6 +28,18 @@ export interface IStateResultResponse {
|
||||
data: IStateDrop;
|
||||
}
|
||||
|
||||
export interface IPrjData {
|
||||
prjseq?: number;
|
||||
prjnam?: string;
|
||||
prjusrnam?: string;
|
||||
prjwntbdg?: string;
|
||||
prjbdgnam?: string;
|
||||
prjbdgcod?: string;
|
||||
prjacpbdg?: string;
|
||||
prjcomstt?: string;
|
||||
prjacpdtm?: string;
|
||||
}
|
||||
|
||||
export interface IStateResultResponse {
|
||||
data: IStateDrop;
|
||||
}
|
||||
|
||||
26
ng-ttc-frontend/src/app/interfaces/main.interface.ts
Normal file
26
ng-ttc-frontend/src/app/interfaces/main.interface.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
export interface IPrjMst {
|
||||
prjseq?: number;
|
||||
prjnam?: string;
|
||||
prjusrnam?: string;
|
||||
prjwntbdg?: string;
|
||||
prjbdgnam?: string;
|
||||
prjbdgcod?: string;
|
||||
prjacpbdg?: string;
|
||||
prjcomstt?: string;
|
||||
prjacpdtm?: string;
|
||||
}
|
||||
|
||||
export interface ITrnmst {
|
||||
trnseq?: number;
|
||||
trnprjnam?: string;
|
||||
trnbdgnam?: string;
|
||||
trnbdgcod?: string;
|
||||
trncomstt?: string;
|
||||
trnexpbdg: number;
|
||||
trnacpdtm?: number;
|
||||
}
|
||||
|
||||
export interface IDropBdg {
|
||||
bdgnam?: string;
|
||||
bdgcod?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user