โครงการ => API ลักษณะโครงการ
This commit is contained in:
parent
c5b68d0691
commit
b76f5854cf
5 changed files with 107 additions and 74 deletions
|
|
@ -110,22 +110,29 @@ interface ResPlannedGoals {
|
|||
}
|
||||
|
||||
interface ResRecord {
|
||||
commandDate: Date | null;
|
||||
commandNumber: string |null;
|
||||
firstName: string;
|
||||
fullName: string;
|
||||
id: string;
|
||||
idcard: string;
|
||||
isDone: boolean;
|
||||
lastName: string;
|
||||
org: string;
|
||||
posExecutive: string | null;
|
||||
posLevelName :string;
|
||||
posTypeName: string;
|
||||
position: string;
|
||||
prefix: string;
|
||||
trainingDays: number | null;
|
||||
type: string;
|
||||
commandDate: Date | null;
|
||||
commandNumber: string | null;
|
||||
firstName: string;
|
||||
fullName: string;
|
||||
id: string;
|
||||
idcard: string;
|
||||
isDone: boolean;
|
||||
lastName: string;
|
||||
org: string;
|
||||
posExecutive: string | null;
|
||||
posLevelName: string;
|
||||
posTypeName: string;
|
||||
position: string;
|
||||
prefix: string;
|
||||
trainingDays: number | null;
|
||||
type: string;
|
||||
}
|
||||
|
||||
interface DataStrategic {
|
||||
id: string;
|
||||
name: string;
|
||||
level: number;
|
||||
children: DataStrategic;
|
||||
}
|
||||
|
||||
export type {
|
||||
|
|
@ -136,5 +143,6 @@ export type {
|
|||
ResPeople,
|
||||
ResActualGoals,
|
||||
ResPlannedGoals,
|
||||
ResRecord
|
||||
ResRecord,
|
||||
DataStrategic,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue