no message
This commit is contained in:
commit
d3ec604478
35 changed files with 2452 additions and 729 deletions
|
|
@ -20,15 +20,15 @@ interface InvestigatefactsDataRowType {
|
|||
}
|
||||
|
||||
interface investigateDisDataRowType {
|
||||
id:string
|
||||
subject: string;
|
||||
interrogated: string;
|
||||
fault: string | undefined;
|
||||
penaltyLevel: string | undefined;
|
||||
caseFault: string;
|
||||
dateInvestigate: string | null;
|
||||
status: string | undefined;
|
||||
active: string | undefined;
|
||||
id: string; //id รายการ
|
||||
title: string; //เรื่องร้องเรียน
|
||||
interrogated: string; //ผู้ถูกสอบสวน
|
||||
descMistake: string; //ลักษณะความผิด
|
||||
mistakeLevel: string; //ระดับโทษความผิด
|
||||
mistakeCase: string; //กรณีความผิด
|
||||
investigationDate: Date | null; //วันที่สอบสวน
|
||||
status: string | null; //สถานะ
|
||||
isResultConfirmed: Boolean; //ยืนยันผลเเล้ว/ยังไม่ได้ยืนยันผล
|
||||
}
|
||||
|
||||
interface directorType {
|
||||
|
|
@ -51,11 +51,18 @@ interface responseType {
|
|||
phone:string
|
||||
}
|
||||
|
||||
interface FileLists {
|
||||
id: string; //id เอกสาร
|
||||
fileName: string; //ชื่่อเอกสาร
|
||||
pathName: string; //link file
|
||||
}
|
||||
|
||||
export type {
|
||||
DataOption,
|
||||
InvestigatefactsDataRowType,
|
||||
investigateDisDataRowType,
|
||||
directorType,
|
||||
DataNumberOption,
|
||||
responseType
|
||||
responseType,
|
||||
FileLists,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
interface FormData {
|
||||
complaint: string;
|
||||
respondentType: string;
|
||||
dateInvestigate: Date | null;
|
||||
dateAllegation: Date | null;
|
||||
dateEvident: Date | null;
|
||||
|
|
@ -18,7 +19,9 @@ interface FormData {
|
|||
recordAccuser: string;
|
||||
witnesses: string;
|
||||
InvestResults: string;
|
||||
complaintStatus: string
|
||||
complaintStatus: string;
|
||||
organizationId: string;
|
||||
consideredAgency: string;
|
||||
}
|
||||
|
||||
interface disciplinaryRef {
|
||||
|
|
|
|||
10
src/modules/11_discipline/interface/request/result.ts
Normal file
10
src/modules/11_discipline/interface/request/result.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface FormData {
|
||||
detail: string;
|
||||
}
|
||||
|
||||
interface FormRef {
|
||||
detail: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { FormData, FormRef };
|
||||
|
|
@ -1,55 +1,51 @@
|
|||
interface DataListRow {
|
||||
id:string
|
||||
title: string
|
||||
description: string
|
||||
appellant: string
|
||||
offenseDetails: string
|
||||
createdAt: string
|
||||
levelConsideration: string
|
||||
dateConsideration: string
|
||||
status: string
|
||||
id: string;
|
||||
personId: string;
|
||||
title: string;
|
||||
dateReceived: string;
|
||||
respondentType: string;
|
||||
offenseDetails: string;
|
||||
createdAt: string;
|
||||
levelConsideration: string;
|
||||
dateConsideration: string;
|
||||
status: string;
|
||||
}
|
||||
interface DataAdd {
|
||||
id:string
|
||||
idcard:string
|
||||
name:string
|
||||
positionNo:string
|
||||
position:string
|
||||
positionLevel:string
|
||||
salary:string
|
||||
organization:string
|
||||
id: string;
|
||||
idcard: string;
|
||||
name: string;
|
||||
positionNo: string;
|
||||
position: string;
|
||||
positionLevel: string;
|
||||
salary: string;
|
||||
organization: string;
|
||||
}
|
||||
interface DataAddResponse {
|
||||
id:string
|
||||
idcard:string
|
||||
name:string
|
||||
positionNo:string
|
||||
position:string
|
||||
positionLevel:string
|
||||
salary:string
|
||||
organization:string
|
||||
id: string;
|
||||
idcard: string;
|
||||
name: string;
|
||||
positionNo: string;
|
||||
position: string;
|
||||
positionLevel: string;
|
||||
salary: string;
|
||||
organization: string;
|
||||
}
|
||||
interface DataList {
|
||||
id:string
|
||||
title: string
|
||||
description: string
|
||||
appellant: string
|
||||
offenseDetails: string
|
||||
createdAt: Date
|
||||
levelConsideration: string
|
||||
dateConsideration: Date
|
||||
status: string
|
||||
id: string;
|
||||
personId: string;
|
||||
title: string;
|
||||
dateReceived: Date | null;
|
||||
respondentType: string;
|
||||
offenseDetails: string;
|
||||
createdAt: Date;
|
||||
levelConsideration: string;
|
||||
dateConsideration: Date | null;
|
||||
status: string;
|
||||
}
|
||||
|
||||
interface ocListType{
|
||||
organizationId:string
|
||||
organizationName:string
|
||||
interface ocListType {
|
||||
organizationId: string;
|
||||
organizationName: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
DataList,
|
||||
DataListRow,
|
||||
DataAdd,
|
||||
DataAddResponse,
|
||||
ocListType
|
||||
}
|
||||
export type { DataList, DataListRow, DataAdd, DataAddResponse, ocListType };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue