ปรับหน้าเรื่องร้องเรียนของวินัย
This commit is contained in:
parent
bb8f96c78a
commit
e18386db65
7 changed files with 221 additions and 305 deletions
|
|
@ -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: Date | "-";
|
||||
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 | "-";
|
||||
respondentType: string;
|
||||
offenseDetails: string;
|
||||
createdAt: Date;
|
||||
levelConsideration: string;
|
||||
dateConsideration: Date;
|
||||
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