fix พํฒนาบุคลากร

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-27 17:45:36 +07:00
parent 1e892b89f4
commit 62f1c81841
6 changed files with 71 additions and 30 deletions

View file

@ -90,7 +90,12 @@ interface FormProjectDetail {
dateStart: Date | null; //วันที่เริ่มต้น
dateEnd: Date | null; //วันที่สิ้นสุด
totalDate: number | null | string; //รวมระยะเวลา (วัน)
developmentAddresss: [{ address: string; provinceId: string }]; //ที่อยู่ ,จังหวัด
developmentAddresss: DevelopmentAddress[]; //ที่อยู่ ,จังหวัด
}
interface DevelopmentAddress {
address: string;
provinceId: string;
}
interface DataHistory {