Add endpoint to add extra_hours

This commit is contained in:
Simon Goller 2024-06-24 08:31:47 +02:00
parent d4adcb182f
commit c8f28e1f7b
11 changed files with 335 additions and 38 deletions

View file

@ -20,7 +20,9 @@ pub struct ExtraHoursEntity {
pub category: ExtraHoursCategoryEntity,
pub description: Arc<str>,
pub date_time: time::PrimitiveDateTime,
pub created: time::PrimitiveDateTime,
pub deleted: Option<time::PrimitiveDateTime>,
pub version: Uuid,
}
#[automock]