cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
26 lines (25 loc) • 931 B
TypeScript
/**
* Route allocation schema (passenger ↔ route + pickup/drop stops).
* Industry-agnostic: use for any transport allocation (corporate shuttle, school bus, patient transport, etc.).
* Field names (fltst_*) kept for backward compatibility.
*/
declare class FleetStudentTransportBase {
_id?: string;
fltst_student_id_auth?: string;
fltst_route_id_fltrm?: string;
fltst_pickup_stop_id_fltrs?: string;
fltst_drop_stop_id_fltrs?: string;
fltst_valid_from?: Date;
fltst_valid_to?: Date;
fltst_transport_type_sygms?: string;
fltst_guardian_phone?: string;
fltst_entity_id_syen?: string;
fltst_academic_year_id_acayr?: string;
fltst_isactive?: boolean;
fltst_created_at?: Date;
fltst_updated_at?: Date;
fltst_created_by_user?: string;
}
declare class FleetStudentTransport extends FleetStudentTransportBase {
}
export { FleetStudentTransportBase, FleetStudentTransport };