This commit is contained in:
x2Skyz
2025-11-25 21:11:57 +07:00
parent 291485f7b7
commit 368f2ef5e6
19 changed files with 1014 additions and 811 deletions

View File

@@ -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;
}

View 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;
}