<?php
namespace App\Entity;
use App\Repository\WorkerTimesheetRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
/**
* @ORM\Entity(repositoryClass=WorkerTimesheetRepository::class)
*/
class WorkerTimesheet
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
* @Groups({
* "worker.manage.base.timesheet",
* "timesheet.collected.base",
* })
*/
private $id;
/**
* @ORM\Column(type="integer")
* Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
* @Groups({
* "worker.manage.base.timesheet",
* "timesheet.for.customer",
* "timesheet.for.stakeholder",
*
* "timesheet.collected.base"
* })
*/
private $year;
// /**
// * @ORM\Column(type="json", nullable=true, options={"comment": "{'month_value': {'day': 'month_day_value', info:{'stakeholder_project_id': 'message'}, place: {'stakeholder_project_id': 'time'}, tota: total_time }}"})
// * Groups({"worker.manage.base.timesheet"})
// */
// private $worker_time_in_place_months = [];
/**
* /// TODO remove this prop
* @deprecated
* @ORM\ManyToOne(targetEntity=Worker::class, inversedBy="worker_timesheets")
* @ORM\JoinColumn(nullable=true, onDelete="CASCADE")
* Groups({"worker.manage.base.timesheet"})
*/
private $worker_a;
/**
* @ORM\ManyToOne(targetEntity=WorkerActivities::class, inversedBy="worker_timesheets")
* Groups({"worker.manage.base.timesheet"})
* @ORM\JoinColumn(onDelete="CASCADE")
* @Groups({
* "timesheet.collected.base"
* })
*/
private $worker_activity;
/**
* @ORM\Column(type="datetime_immutable", nullable=true)
*/
private $created_at;
/**
* @ORM\Column(type="datetime_immutable", nullable=true)
*/
private $transformed_at;
public function getSpecificMonths(int $year, int $month): array
{
$reflection = new \ReflectionClass($this); // Mevcut sınıfın reflection'ını al
# $methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC); // Tüm public metodları al
$props = $reflection->getDefaultProperties();
$data = [
'worker_activity' => $this->getWorkerActivity(),
'year' => $this->getYear(),
];
if( $this->getYear() === $year ){
$activeTotal = [];
$inactiveTotal = [];
foreach (array_keys($props) as $prop) {
#dd($prop);
// Method ismi "getM1..12D1..31" ile başlayıp, "1" ile "31" arasında bir sayı ile bitiyorsa
if (preg_match("/^m{$month}_d([1-9]|1[0-9]|2[0-9]|3[0-1])$/", $prop )) {
$exploded = explode("_", $prop);
$toUpper = array_map('strtoupper', $exploded);
$imploded = implode('', $toUpper );
$methodName = "get" . $imploded; // "get" kısmını kaldır ve küçük harfe çevir
$dayContent = [];
if( $this->$methodName() ){
$present = $this->$methodName()['absenceShortKey'];
$time = '';
switch( $present ){
case 'P':
try{
$time = array_sum(array_map(function($project){
$times = [];
foreach ($project['orders_total'] as $orderId => $orderTime) {
$times[] = floatval($orderTime);
}
return array_sum($times);
}, $this->$methodName()['projects'] ));
$activeTotal[] = $time;
} catch (\Exception $exception){
dd($exception->getMessage());
}
break;
case 'S':
case 'H':
$time = $this->$methodName()['info']['time'];
$inactiveTotal[] = $time;
break;
case 'HNP':
break;
}
$dayContent = [
'absenceShortKey' => $this->$methodName()['absenceShortKey'],
'time' => $time
];
}
// $data[$prop] = $this->$methodName(); // Metodu çağır ve sonucu ekle
$data[$prop] = $dayContent;// $this->$methodName(); // Metodu çağır ve sonucu ekle
$month_active = array_sum($activeTotal);
$month_inactive = array_sum($inactiveTotal);
$data['month'] = [
'active' => $month_active,
'inactive' => $month_inactive,
'total' => array_sum([$month_active, $month_inactive])
];
}
}
/*if($with === "method"){
// Metodları filtrele ve sadece 'getM1D1'... 'getM1D30' deseniyle uyumlu olanları al
foreach ($methods as $method) {
$methodName = $method->getName();
// Metod ismi "getM1D" ile başlayıp, "1" ile "30" arasında bir sayı ile bitiyorsa
if (preg_match('/^getM1D([1-9]|1[0-9]|2[0-9]|30)$/', $methodName)) {
$key = strtolower(substr($methodName, 3)); // "get" kısmını kaldır ve küçük harfe çevir
$data[$key] = $this->$methodName(); // Metodu çağır ve sonucu ekle
}
}
}*/
}
#dd();
return $data;
}
public function getExitsInOrder(int $year, int $orderId): bool
{
$reflection = new \ReflectionClass($this); // Mevcut sınıfın reflection'ını al
# $methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC); // Tüm public metodları al
$props = $reflection->getDefaultProperties();
$data = [
'worker_activity' => $this->getWorkerActivity(),
'year' => $this->getYear(),
];
$isResponsibleForOrder = false;
if ($this->getYear() === $year) {
$activeTotal = [];
$inactiveTotal = [];
foreach (array_keys($props) as $prop) {
#dd($prop);
// Method ismi "getM1..12D1..31" ile başlayıp, "1" ile "31" arasında bir sayı ile bitiyorsa
if (preg_match("/^m([1-9]|1[0-2])_d([1-9]|1[0-9]|2[0-9]|3[0-1])$/", $prop)) {
$exploded = explode("_", $prop);
$toUpper = array_map('strtoupper', $exploded);
$imploded = implode('', $toUpper);
$methodName = "get" . $imploded; // "get" kısmını kaldır ve küçük harfe çevir
// Belirtilen method çağrılıyor ve veri alınıyor
$data = $this->$methodName();
if ($data) {
// Gerekli anahtarların varlığını kontrol et
$hasProjects = isset($data['projects']) && is_array($data['projects']);
$hasInfo = isset($data['info']) && is_array($data['info']);
if ($hasProjects && $hasInfo) {
$projects = $data['projects'];
$targetRole = $data['info']['role'] ?? null;
$absenceShortKey = $data['absenceShortKey'] ?? null;
// $isResponsibleForOrder = false;
// Her bir proje için, ilgili role ve order ID kontrolü yapılır
foreach ($projects as $project) {
$roles = $project['roles'] ?? [];
foreach ($roles as $role) {
$matchesTargetRole = $role['role'] === $targetRole;
$hasOrder = isset($role['orders']) && array_key_exists($orderId, $role['orders']);
if ($matchesTargetRole && $hasOrder) {
$isResponsibleForOrder = true;
break 2; // Hem project hem roles döngüsünden çık
}
}
}
if ($isResponsibleForOrder) {
// Eşleşme bulunduysa işlemi sonlandır
break;
}
}
}
}
}
}
return $isResponsibleForOrder;
}
public function getId(): ?int
{
return $this->id;
}
public function getYear(): ?int
{
return $this->year;
}
public function setYear(int $year): self
{
$this->year = $year;
return $this;
}
public function getWorkerA(): ?Worker
{
return $this->worker_a;
}
public function setWorkerA(?Worker $worker_a): self
{
$this->worker_a = $worker;
return $this;
}
public function getWorkerActivity(): ?WorkerActivities
{
return $this->worker_activity;
}
public function setWorkerActivity(?WorkerActivities $worker_activity): self
{
$this->worker_activity = $worker_activity;
return $this;
}
// public function getWorkerTimeInPlaceMonths(): ?array
// {
// return $this->worker_time_in_place_months;
// }
//
// public function setWorkerTimeInPlaceMonths(?array $worker_time_in_place_months): self
// {
// $this->worker_time_in_place_months = $worker_time_in_place_months;
//
// return $this;
// }
public function getCreatedAt(): ?\DateTimeImmutable
{
return $this->created_at;
}
public function setCreatedAt(?\DateTimeImmutable $created_at): self
{
$this->created_at = $created_at;
return $this;
}
public function getTransformedAt(): ?\DateTimeImmutable
{
return $this->transformed_at;
}
public function setTransformedAt(?\DateTimeImmutable $transformed_at): self
{
$this->transformed_at = $transformed_at;
return $this;
}
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d1 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d2 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d3 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d4 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d5 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d6 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d7 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d8 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d9 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d10 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d11 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d12 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d13 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d14 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d15 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d16 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d17 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d18 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d19 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d20 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d21 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d22 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d23 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d24 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d25 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d26 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d27 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d28 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d29 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d30 = [];
//
// /**
// * @ORM\Column(type="json", nullable=true)
// * Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
// */
// private $d31 = [];
//
//
// public function getD1(): ?array { return $this->d1; }
// public function setD1(?array $d1): self { $this->d1 = $d1; return $this; }
//
//
// public function getD2(): ?array { return $this->d2; }
// public function setD2(?array $d2): self { $this->d2 = $d2; return $this; }
//
// public function getD3(): ?array { return $this->d3; }
// public function setD3(?array $d3): self { $this->d3 = $d3; return $this; }
//
// public function getD4(): ?array { return $this->d4; }
// public function setD4(?array $d4): self { $this->d4 = $d4; return $this; }
//
// public function getD5(): ?array { return $this->d5; }
// public function setD5(?array $d5): self { $this->d5 = $d5; return $this; }
//
// public function getD6(): ?array { return $this->d6; }
// public function setD6(?array $d6): self { $this->d6 = $d6; return $this; }
//
// public function getD7(): ?array { return $this->d7; }
// public function setD7(?array $d7): self { $this->d7 = $d7; return $this; }
//
// public function getD8(): ?array { return $this->d8; }
// public function setD8(?array $d8): self { $this->d8 = $d8; return $this; }
//
// public function getD9(): ?array { return $this->d9; }
// public function setD9(?array $d9): self { $this->d9 = $d9; return $this; }
//
// public function getD10(): ?array { return $this->d10; }
// public function setD10(?array $d10): self { $this->d10 = $d10; return $this; }
//
// public function getD11(): ?array { return $this->d11; }
// public function setD11(?array $d11): self { $this->d11 = $d11; return $this; }
//
// public function getD12(): ?array { return $this->d12; }
// public function setD12(?array $d12): self { $this->d12 = $d12; return $this; }
//
// public function getD13(): ?array { return $this->d13; }
// public function setD13(?array $d13): self { $this->d13 = $d13; return $this; }
//
// public function getD14(): ?array { return $this->d14; }
// public function setD14(?array $d14): self { $this->d14 = $d14; return $this; }
//
// public function getD15(): ?array { return $this->d15; }
// public function setD15(?array $d15): self { $this->d15 = $d15; return $this; }
//
// public function getD16(): ?array { return $this->d16; }
// public function setD16(?array $d16): self { $this->d16 = $d16; return $this; }
//
// public function getD17(): ?array { return $this->d17; }
// public function setD17(?array $d17): self { $this->d17 = $d17; return $this; }
//
// public function getD18(): ?array { return $this->d18; }
// public function setD18(?array $d18): self { $this->d18 = $d18; return $this; }
//
// public function getD19(): ?array { return $this->d19; }
// public function setD19(?array $d19): self { $this->d19 = $d19; return $this; }
//
// public function getD20(): ?array { return $this->d20; }
// public function setD20(?array $d20): self { $this->d20 = $d20; return $this; }
//
// public function getD21(): ?array { return $this->d21; }
// public function setD21(?array $d21): self { $this->d21 = $d21; return $this; }
//
// public function getD22(): ?array { return $this->d22; }
// public function setD22(?array $d22): self { $this->d22 = $d22; return $this; }
//
// public function getD23(): ?array { return $this->d23; }
// public function setD23(?array $d23): self { $this->d23 = $d23; return $this; }
//
// public function getD24(): ?array { return $this->d24; }
// public function setD24(?array $d24): self { $this->d24 = $d24; return $this; }
//
// public function getD25(): ?array { return $this->d25; }
// public function setD25(?array $d25): self { $this->d25 = $d25; return $this; }
//
// public function getD26(): ?array { return $this->d26; }
// public function setD26(?array $d26): self { $this->d26 = $d26; return $this; }
//
// public function getD27(): ?array { return $this->d27; }
// public function setD27(?array $d27): self { $this->d27 = $d27; return $this; }
//
// public function getD28(): ?array { return $this->d28; }
// public function setD28(?array $d28): self { $this->d28 = $d28; return $this; }
//
// public function getD29(): ?array { return $this->d29; }
// public function setD29(?array $d29): self { $this->d29 = $d29; return $this; }
//
// public function getD30(): ?array { return $this->d30; }
// public function setD30(?array $d30): self { $this->d30 = $d30; return $this; }
//
// public function getD31(): ?array { return $this->d31; }
// public function setD31(?array $d31): self { $this->d31 = $d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d1 = [];
public function getM1D1(): ?array { return $this->m1_d1; }
public function setM1D1(?array $m1_d1): self { $this->m1_d1 = $m1_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d2 = [];
public function getM1D2(): ?array { return $this->m1_d2; }
public function setM1D2(?array $m1_d2): self { $this->m1_d2 = $m1_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d3 = [];
public function getM1D3(): ?array { return $this->m1_d3; }
public function setM1D3(?array $m1_d3): self { $this->m1_d3 = $m1_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d4 = [];
public function getM1D4(): ?array { return $this->m1_d4; }
public function setM1D4(?array $m1_d4): self { $this->m1_d4 = $m1_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d5 = [];
public function getM1D5(): ?array { return $this->m1_d5; }
public function setM1D5(?array $m1_d5): self { $this->m1_d5 = $m1_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d6 = [];
public function getM1D6(): ?array { return $this->m1_d6; }
public function setM1D6(?array $m1_d6): self { $this->m1_d6 = $m1_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d7 = [];
public function getM1D7(): ?array { return $this->m1_d7; }
public function setM1D7(?array $m1_d7): self { $this->m1_d7 = $m1_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d8 = [];
public function getM1D8(): ?array { return $this->m1_d8; }
public function setM1D8(?array $m1_d8): self { $this->m1_d8 = $m1_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d9 = [];
public function getM1D9(): ?array { return $this->m1_d9; }
public function setM1D9(?array $m1_d9): self { $this->m1_d9 = $m1_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d10 = [];
public function getM1D10(): ?array { return $this->m1_d10; }
public function setM1D10(?array $m1_d10): self { $this->m1_d10 = $m1_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d11 = [];
public function getM1D11(): ?array { return $this->m1_d11; }
public function setM1D11(?array $m1_d11): self { $this->m1_d11 = $m1_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d12 = [];
public function getM1D12(): ?array { return $this->m1_d12; }
public function setM1D12(?array $m1_d12): self { $this->m1_d12 = $m1_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d13 = [];
public function getM1D13(): ?array { return $this->m1_d13; }
public function setM1D13(?array $m1_d13): self { $this->m1_d13 = $m1_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d14 = [];
public function getM1D14(): ?array { return $this->m1_d14; }
public function setM1D14(?array $m1_d14): self { $this->m1_d14 = $m1_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d15 = [];
public function getM1D15(): ?array { return $this->m1_d15; }
public function setM1D15(?array $m1_d15): self { $this->m1_d15 = $m1_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d16 = [];
public function getM1D16(): ?array { return $this->m1_d16; }
public function setM1D16(?array $m1_d16): self { $this->m1_d16 = $m1_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d17 = [];
public function getM1D17(): ?array { return $this->m1_d17; }
public function setM1D17(?array $m1_d17): self { $this->m1_d17 = $m1_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d18 = [];
public function getM1D18(): ?array { return $this->m1_d18; }
public function setM1D18(?array $m1_d18): self { $this->m1_d18 = $m1_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d19 = [];
public function getM1D19(): ?array { return $this->m1_d19; }
public function setM1D19(?array $m1_d19): self { $this->m1_d19 = $m1_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d20 = [];
public function getM1D20(): ?array { return $this->m1_d20; }
public function setM1D20(?array $m1_d20): self { $this->m1_d20 = $m1_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d21 = [];
public function getM1D21(): ?array { return $this->m1_d21; }
public function setM1D21(?array $m1_d21): self { $this->m1_d21 = $m1_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d22 = [];
public function getM1D22(): ?array { return $this->m1_d22; }
public function setM1D22(?array $m1_d22): self { $this->m1_d22 = $m1_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d23 = [];
public function getM1D23(): ?array { return $this->m1_d23; }
public function setM1D23(?array $m1_d23): self { $this->m1_d23 = $m1_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d24 = [];
public function getM1D24(): ?array { return $this->m1_d24; }
public function setM1D24(?array $m1_d24): self { $this->m1_d24 = $m1_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d25 = [];
public function getM1D25(): ?array { return $this->m1_d25; }
public function setM1D25(?array $m1_d25): self { $this->m1_d25 = $m1_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d26 = [];
public function getM1D26(): ?array { return $this->m1_d26; }
public function setM1D26(?array $m1_d26): self { $this->m1_d26 = $m1_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d27 = [];
public function getM1D27(): ?array { return $this->m1_d27; }
public function setM1D27(?array $m1_d27): self { $this->m1_d27 = $m1_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d28 = [];
public function getM1D28(): ?array { return $this->m1_d28; }
public function setM1D28(?array $m1_d28): self { $this->m1_d28 = $m1_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d29 = [];
public function getM1D29(): ?array { return $this->m1_d29; }
public function setM1D29(?array $m1_d29): self { $this->m1_d29 = $m1_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d30 = [];
public function getM1D30(): ?array { return $this->m1_d30; }
public function setM1D30(?array $m1_d30): self { $this->m1_d30 = $m1_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m1_d31 = [];
public function getM1D31(): ?array { return $this->m1_d31; }
public function setM1D31(?array $m1_d31): self { $this->m1_d31 = $m1_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d1 = [];
public function getM2D1(): ?array { return $this->m2_d1; }
public function setM2D1(?array $m2_d1): self { $this->m2_d1 = $m2_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d2 = [];
public function getM2D2(): ?array { return $this->m2_d2; }
public function setM2D2(?array $m2_d2): self { $this->m2_d2 = $m2_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d3 = [];
public function getM2D3(): ?array { return $this->m2_d3; }
public function setM2D3(?array $m2_d3): self { $this->m2_d3 = $m2_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d4 = [];
public function getM2D4(): ?array { return $this->m2_d4; }
public function setM2D4(?array $m2_d4): self { $this->m2_d4 = $m2_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d5 = [];
public function getM2D5(): ?array { return $this->m2_d5; }
public function setM2D5(?array $m2_d5): self { $this->m2_d5 = $m2_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d6 = [];
public function getM2D6(): ?array { return $this->m2_d6; }
public function setM2D6(?array $m2_d6): self { $this->m2_d6 = $m2_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d7 = [];
public function getM2D7(): ?array { return $this->m2_d7; }
public function setM2D7(?array $m2_d7): self { $this->m2_d7 = $m2_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d8 = [];
public function getM2D8(): ?array { return $this->m2_d8; }
public function setM2D8(?array $m2_d8): self { $this->m2_d8 = $m2_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d9 = [];
public function getM2D9(): ?array { return $this->m2_d9; }
public function setM2D9(?array $m2_d9): self { $this->m2_d9 = $m2_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d10 = [];
public function getM2D10(): ?array { return $this->m2_d10; }
public function setM2D10(?array $m2_d10): self { $this->m2_d10 = $m2_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d11 = [];
public function getM2D11(): ?array { return $this->m2_d11; }
public function setM2D11(?array $m2_d11): self { $this->m2_d11 = $m2_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d12 = [];
public function getM2D12(): ?array { return $this->m2_d12; }
public function setM2D12(?array $m2_d12): self { $this->m2_d12 = $m2_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d13 = [];
public function getM2D13(): ?array { return $this->m2_d13; }
public function setM2D13(?array $m2_d13): self { $this->m2_d13 = $m2_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d14 = [];
public function getM2D14(): ?array { return $this->m2_d14; }
public function setM2D14(?array $m2_d14): self { $this->m2_d14 = $m2_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d15 = [];
public function getM2D15(): ?array { return $this->m2_d15; }
public function setM2D15(?array $m2_d15): self { $this->m2_d15 = $m2_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d16 = [];
public function getM2D16(): ?array { return $this->m2_d16; }
public function setM2D16(?array $m2_d16): self { $this->m2_d16 = $m2_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d17 = [];
public function getM2D17(): ?array { return $this->m2_d17; }
public function setM2D17(?array $m2_d17): self { $this->m2_d17 = $m2_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d18 = [];
public function getM2D18(): ?array { return $this->m2_d18; }
public function setM2D18(?array $m2_d18): self { $this->m2_d18 = $m2_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d19 = [];
public function getM2D19(): ?array { return $this->m2_d19; }
public function setM2D19(?array $m2_d19): self { $this->m2_d19 = $m2_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d20 = [];
public function getM2D20(): ?array { return $this->m2_d20; }
public function setM2D20(?array $m2_d20): self { $this->m2_d20 = $m2_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d21 = [];
public function getM2D21(): ?array { return $this->m2_d21; }
public function setM2D21(?array $m2_d21): self { $this->m2_d21 = $m2_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d22 = [];
public function getM2D22(): ?array { return $this->m2_d22; }
public function setM2D22(?array $m2_d22): self { $this->m2_d22 = $m2_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d23 = [];
public function getM2D23(): ?array { return $this->m2_d23; }
public function setM2D23(?array $m2_d23): self { $this->m2_d23 = $m2_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d24 = [];
public function getM2D24(): ?array { return $this->m2_d24; }
public function setM2D24(?array $m2_d24): self { $this->m2_d24 = $m2_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d25 = [];
public function getM2D25(): ?array { return $this->m2_d25; }
public function setM2D25(?array $m2_d25): self { $this->m2_d25 = $m2_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d26 = [];
public function getM2D26(): ?array { return $this->m2_d26; }
public function setM2D26(?array $m2_d26): self { $this->m2_d26 = $m2_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d27 = [];
public function getM2D27(): ?array { return $this->m2_d27; }
public function setM2D27(?array $m2_d27): self { $this->m2_d27 = $m2_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d28 = [];
public function getM2D28(): ?array { return $this->m2_d28; }
public function setM2D28(?array $m2_d28): self { $this->m2_d28 = $m2_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d29 = [];
public function getM2D29(): ?array { return $this->m2_d29; }
public function setM2D29(?array $m2_d29): self { $this->m2_d29 = $m2_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d30 = [];
public function getM2D30(): ?array { return $this->m2_d30; }
public function setM2D30(?array $m2_d30): self { $this->m2_d30 = $m2_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m2_d31 = [];
public function getM2D31(): ?array { return $this->m2_d31; }
public function setM2D31(?array $m2_d31): self { $this->m2_d31 = $m2_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d1 = [];
public function getM3D1(): ?array { return $this->m3_d1; }
public function setM3D1(?array $m3_d1): self { $this->m3_d1 = $m3_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d2 = [];
public function getM3D2(): ?array { return $this->m3_d2; }
public function setM3D2(?array $m3_d2): self { $this->m3_d2 = $m3_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d3 = [];
public function getM3D3(): ?array { return $this->m3_d3; }
public function setM3D3(?array $m3_d3): self { $this->m3_d3 = $m3_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d4 = [];
public function getM3D4(): ?array { return $this->m3_d4; }
public function setM3D4(?array $m3_d4): self { $this->m3_d4 = $m3_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d5 = [];
public function getM3D5(): ?array { return $this->m3_d5; }
public function setM3D5(?array $m3_d5): self { $this->m3_d5 = $m3_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d6 = [];
public function getM3D6(): ?array { return $this->m3_d6; }
public function setM3D6(?array $m3_d6): self { $this->m3_d6 = $m3_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d7 = [];
public function getM3D7(): ?array { return $this->m3_d7; }
public function setM3D7(?array $m3_d7): self { $this->m3_d7 = $m3_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d8 = [];
public function getM3D8(): ?array { return $this->m3_d8; }
public function setM3D8(?array $m3_d8): self { $this->m3_d8 = $m3_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d9 = [];
public function getM3D9(): ?array { return $this->m3_d9; }
public function setM3D9(?array $m3_d9): self { $this->m3_d9 = $m3_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d10 = [];
public function getM3D10(): ?array { return $this->m3_d10; }
public function setM3D10(?array $m3_d10): self { $this->m3_d10 = $m3_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d11 = [];
public function getM3D11(): ?array { return $this->m3_d11; }
public function setM3D11(?array $m3_d11): self { $this->m3_d11 = $m3_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d12 = [];
public function getM3D12(): ?array { return $this->m3_d12; }
public function setM3D12(?array $m3_d12): self { $this->m3_d12 = $m3_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d13 = [];
public function getM3D13(): ?array { return $this->m3_d13; }
public function setM3D13(?array $m3_d13): self { $this->m3_d13 = $m3_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d14 = [];
public function getM3D14(): ?array { return $this->m3_d14; }
public function setM3D14(?array $m3_d14): self { $this->m3_d14 = $m3_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d15 = [];
public function getM3D15(): ?array { return $this->m3_d15; }
public function setM3D15(?array $m3_d15): self { $this->m3_d15 = $m3_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d16 = [];
public function getM3D16(): ?array { return $this->m3_d16; }
public function setM3D16(?array $m3_d16): self { $this->m3_d16 = $m3_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d17 = [];
public function getM3D17(): ?array { return $this->m3_d17; }
public function setM3D17(?array $m3_d17): self { $this->m3_d17 = $m3_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d18 = [];
public function getM3D18(): ?array { return $this->m3_d18; }
public function setM3D18(?array $m3_d18): self { $this->m3_d18 = $m3_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d19 = [];
public function getM3D19(): ?array { return $this->m3_d19; }
public function setM3D19(?array $m3_d19): self { $this->m3_d19 = $m3_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d20 = [];
public function getM3D20(): ?array { return $this->m3_d20; }
public function setM3D20(?array $m3_d20): self { $this->m3_d20 = $m3_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d21 = [];
public function getM3D21(): ?array { return $this->m3_d21; }
public function setM3D21(?array $m3_d21): self { $this->m3_d21 = $m3_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d22 = [];
public function getM3D22(): ?array { return $this->m3_d22; }
public function setM3D22(?array $m3_d22): self { $this->m3_d22 = $m3_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d23 = [];
public function getM3D23(): ?array { return $this->m3_d23; }
public function setM3D23(?array $m3_d23): self { $this->m3_d23 = $m3_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d24 = [];
public function getM3D24(): ?array { return $this->m3_d24; }
public function setM3D24(?array $m3_d24): self { $this->m3_d24 = $m3_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d25 = [];
public function getM3D25(): ?array { return $this->m3_d25; }
public function setM3D25(?array $m3_d25): self { $this->m3_d25 = $m3_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d26 = [];
public function getM3D26(): ?array { return $this->m3_d26; }
public function setM3D26(?array $m3_d26): self { $this->m3_d26 = $m3_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d27 = [];
public function getM3D27(): ?array { return $this->m3_d27; }
public function setM3D27(?array $m3_d27): self { $this->m3_d27 = $m3_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d28 = [];
public function getM3D28(): ?array { return $this->m3_d28; }
public function setM3D28(?array $m3_d28): self { $this->m3_d28 = $m3_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d29 = [];
public function getM3D29(): ?array { return $this->m3_d29; }
public function setM3D29(?array $m3_d29): self { $this->m3_d29 = $m3_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d30 = [];
public function getM3D30(): ?array { return $this->m3_d30; }
public function setM3D30(?array $m3_d30): self { $this->m3_d30 = $m3_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m3_d31 = [];
public function getM3D31(): ?array { return $this->m3_d31; }
public function setM3D31(?array $m3_d31): self { $this->m3_d31 = $m3_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d1 = [];
public function getM4D1(): ?array { return $this->m4_d1; }
public function setM4D1(?array $m4_d1): self { $this->m4_d1 = $m4_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d2 = [];
public function getM4D2(): ?array { return $this->m4_d2; }
public function setM4D2(?array $m4_d2): self { $this->m4_d2 = $m4_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d3 = [];
public function getM4D3(): ?array { return $this->m4_d3; }
public function setM4D3(?array $m4_d3): self { $this->m4_d3 = $m4_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d4 = [];
public function getM4D4(): ?array { return $this->m4_d4; }
public function setM4D4(?array $m4_d4): self { $this->m4_d4 = $m4_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d5 = [];
public function getM4D5(): ?array { return $this->m4_d5; }
public function setM4D5(?array $m4_d5): self { $this->m4_d5 = $m4_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d6 = [];
public function getM4D6(): ?array { return $this->m4_d6; }
public function setM4D6(?array $m4_d6): self { $this->m4_d6 = $m4_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d7 = [];
public function getM4D7(): ?array { return $this->m4_d7; }
public function setM4D7(?array $m4_d7): self { $this->m4_d7 = $m4_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d8 = [];
public function getM4D8(): ?array { return $this->m4_d8; }
public function setM4D8(?array $m4_d8): self { $this->m4_d8 = $m4_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d9 = [];
public function getM4D9(): ?array { return $this->m4_d9; }
public function setM4D9(?array $m4_d9): self { $this->m4_d9 = $m4_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d10 = [];
public function getM4D10(): ?array { return $this->m4_d10; }
public function setM4D10(?array $m4_d10): self { $this->m4_d10 = $m4_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d11 = [];
public function getM4D11(): ?array { return $this->m4_d11; }
public function setM4D11(?array $m4_d11): self { $this->m4_d11 = $m4_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d12 = [];
public function getM4D12(): ?array { return $this->m4_d12; }
public function setM4D12(?array $m4_d12): self { $this->m4_d12 = $m4_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d13 = [];
public function getM4D13(): ?array { return $this->m4_d13; }
public function setM4D13(?array $m4_d13): self { $this->m4_d13 = $m4_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d14 = [];
public function getM4D14(): ?array { return $this->m4_d14; }
public function setM4D14(?array $m4_d14): self { $this->m4_d14 = $m4_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d15 = [];
public function getM4D15(): ?array { return $this->m4_d15; }
public function setM4D15(?array $m4_d15): self { $this->m4_d15 = $m4_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d16 = [];
public function getM4D16(): ?array { return $this->m4_d16; }
public function setM4D16(?array $m4_d16): self { $this->m4_d16 = $m4_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d17 = [];
public function getM4D17(): ?array { return $this->m4_d17; }
public function setM4D17(?array $m4_d17): self { $this->m4_d17 = $m4_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d18 = [];
public function getM4D18(): ?array { return $this->m4_d18; }
public function setM4D18(?array $m4_d18): self { $this->m4_d18 = $m4_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d19 = [];
public function getM4D19(): ?array { return $this->m4_d19; }
public function setM4D19(?array $m4_d19): self { $this->m4_d19 = $m4_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d20 = [];
public function getM4D20(): ?array { return $this->m4_d20; }
public function setM4D20(?array $m4_d20): self { $this->m4_d20 = $m4_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d21 = [];
public function getM4D21(): ?array { return $this->m4_d21; }
public function setM4D21(?array $m4_d21): self { $this->m4_d21 = $m4_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d22 = [];
public function getM4D22(): ?array { return $this->m4_d22; }
public function setM4D22(?array $m4_d22): self { $this->m4_d22 = $m4_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d23 = [];
public function getM4D23(): ?array { return $this->m4_d23; }
public function setM4D23(?array $m4_d23): self { $this->m4_d23 = $m4_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d24 = [];
public function getM4D24(): ?array { return $this->m4_d24; }
public function setM4D24(?array $m4_d24): self { $this->m4_d24 = $m4_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d25 = [];
public function getM4D25(): ?array { return $this->m4_d25; }
public function setM4D25(?array $m4_d25): self { $this->m4_d25 = $m4_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d26 = [];
public function getM4D26(): ?array { return $this->m4_d26; }
public function setM4D26(?array $m4_d26): self { $this->m4_d26 = $m4_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d27 = [];
public function getM4D27(): ?array { return $this->m4_d27; }
public function setM4D27(?array $m4_d27): self { $this->m4_d27 = $m4_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d28 = [];
public function getM4D28(): ?array { return $this->m4_d28; }
public function setM4D28(?array $m4_d28): self { $this->m4_d28 = $m4_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d29 = [];
public function getM4D29(): ?array { return $this->m4_d29; }
public function setM4D29(?array $m4_d29): self { $this->m4_d29 = $m4_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d30 = [];
public function getM4D30(): ?array { return $this->m4_d30; }
public function setM4D30(?array $m4_d30): self { $this->m4_d30 = $m4_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m4_d31 = [];
public function getM4D31(): ?array { return $this->m4_d31; }
public function setM4D31(?array $m4_d31): self { $this->m4_d31 = $m4_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d1 = [];
public function getM5D1(): ?array { return $this->m5_d1; }
public function setM5D1(?array $m5_d1): self { $this->m5_d1 = $m5_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d2 = [];
public function getM5D2(): ?array { return $this->m5_d2; }
public function setM5D2(?array $m5_d2): self { $this->m5_d2 = $m5_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d3 = [];
public function getM5D3(): ?array { return $this->m5_d3; }
public function setM5D3(?array $m5_d3): self { $this->m5_d3 = $m5_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d4 = [];
public function getM5D4(): ?array { return $this->m5_d4; }
public function setM5D4(?array $m5_d4): self { $this->m5_d4 = $m5_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d5 = [];
public function getM5D5(): ?array { return $this->m5_d5; }
public function setM5D5(?array $m5_d5): self { $this->m5_d5 = $m5_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d6 = [];
public function getM5D6(): ?array { return $this->m5_d6; }
public function setM5D6(?array $m5_d6): self { $this->m5_d6 = $m5_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d7 = [];
public function getM5D7(): ?array { return $this->m5_d7; }
public function setM5D7(?array $m5_d7): self { $this->m5_d7 = $m5_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d8 = [];
public function getM5D8(): ?array { return $this->m5_d8; }
public function setM5D8(?array $m5_d8): self { $this->m5_d8 = $m5_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d9 = [];
public function getM5D9(): ?array { return $this->m5_d9; }
public function setM5D9(?array $m5_d9): self { $this->m5_d9 = $m5_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d10 = [];
public function getM5D10(): ?array { return $this->m5_d10; }
public function setM5D10(?array $m5_d10): self { $this->m5_d10 = $m5_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d11 = [];
public function getM5D11(): ?array { return $this->m5_d11; }
public function setM5D11(?array $m5_d11): self { $this->m5_d11 = $m5_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d12 = [];
public function getM5D12(): ?array { return $this->m5_d12; }
public function setM5D12(?array $m5_d12): self { $this->m5_d12 = $m5_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d13 = [];
public function getM5D13(): ?array { return $this->m5_d13; }
public function setM5D13(?array $m5_d13): self { $this->m5_d13 = $m5_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d14 = [];
public function getM5D14(): ?array { return $this->m5_d14; }
public function setM5D14(?array $m5_d14): self { $this->m5_d14 = $m5_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d15 = [];
public function getM5D15(): ?array { return $this->m5_d15; }
public function setM5D15(?array $m5_d15): self { $this->m5_d15 = $m5_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d16 = [];
public function getM5D16(): ?array { return $this->m5_d16; }
public function setM5D16(?array $m5_d16): self { $this->m5_d16 = $m5_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d17 = [];
public function getM5D17(): ?array { return $this->m5_d17; }
public function setM5D17(?array $m5_d17): self { $this->m5_d17 = $m5_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d18 = [];
public function getM5D18(): ?array { return $this->m5_d18; }
public function setM5D18(?array $m5_d18): self { $this->m5_d18 = $m5_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d19 = [];
public function getM5D19(): ?array { return $this->m5_d19; }
public function setM5D19(?array $m5_d19): self { $this->m5_d19 = $m5_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d20 = [];
public function getM5D20(): ?array { return $this->m5_d20; }
public function setM5D20(?array $m5_d20): self { $this->m5_d20 = $m5_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d21 = [];
public function getM5D21(): ?array { return $this->m5_d21; }
public function setM5D21(?array $m5_d21): self { $this->m5_d21 = $m5_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d22 = [];
public function getM5D22(): ?array { return $this->m5_d22; }
public function setM5D22(?array $m5_d22): self { $this->m5_d22 = $m5_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d23 = [];
public function getM5D23(): ?array { return $this->m5_d23; }
public function setM5D23(?array $m5_d23): self { $this->m5_d23 = $m5_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d24 = [];
public function getM5D24(): ?array { return $this->m5_d24; }
public function setM5D24(?array $m5_d24): self { $this->m5_d24 = $m5_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d25 = [];
public function getM5D25(): ?array { return $this->m5_d25; }
public function setM5D25(?array $m5_d25): self { $this->m5_d25 = $m5_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d26 = [];
public function getM5D26(): ?array { return $this->m5_d26; }
public function setM5D26(?array $m5_d26): self { $this->m5_d26 = $m5_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d27 = [];
public function getM5D27(): ?array { return $this->m5_d27; }
public function setM5D27(?array $m5_d27): self { $this->m5_d27 = $m5_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d28 = [];
public function getM5D28(): ?array { return $this->m5_d28; }
public function setM5D28(?array $m5_d28): self { $this->m5_d28 = $m5_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d29 = [];
public function getM5D29(): ?array { return $this->m5_d29; }
public function setM5D29(?array $m5_d29): self { $this->m5_d29 = $m5_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d30 = [];
public function getM5D30(): ?array { return $this->m5_d30; }
public function setM5D30(?array $m5_d30): self { $this->m5_d30 = $m5_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m5_d31 = [];
public function getM5D31(): ?array { return $this->m5_d31; }
public function setM5D31(?array $m5_d31): self { $this->m5_d31 = $m5_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d1 = [];
public function getM6D1(): ?array { return $this->m6_d1; }
public function setM6D1(?array $m6_d1): self { $this->m6_d1 = $m6_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d2 = [];
public function getM6D2(): ?array { return $this->m6_d2; }
public function setM6D2(?array $m6_d2): self { $this->m6_d2 = $m6_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d3 = [];
public function getM6D3(): ?array { return $this->m6_d3; }
public function setM6D3(?array $m6_d3): self { $this->m6_d3 = $m6_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d4 = [];
public function getM6D4(): ?array { return $this->m6_d4; }
public function setM6D4(?array $m6_d4): self { $this->m6_d4 = $m6_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d5 = [];
public function getM6D5(): ?array { return $this->m6_d5; }
public function setM6D5(?array $m6_d5): self { $this->m6_d5 = $m6_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d6 = [];
public function getM6D6(): ?array { return $this->m6_d6; }
public function setM6D6(?array $m6_d6): self { $this->m6_d6 = $m6_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d7 = [];
public function getM6D7(): ?array { return $this->m6_d7; }
public function setM6D7(?array $m6_d7): self { $this->m6_d7 = $m6_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d8 = [];
public function getM6D8(): ?array { return $this->m6_d8; }
public function setM6D8(?array $m6_d8): self { $this->m6_d8 = $m6_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d9 = [];
public function getM6D9(): ?array { return $this->m6_d9; }
public function setM6D9(?array $m6_d9): self { $this->m6_d9 = $m6_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d10 = [];
public function getM6D10(): ?array { return $this->m6_d10; }
public function setM6D10(?array $m6_d10): self { $this->m6_d10 = $m6_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d11 = [];
public function getM6D11(): ?array { return $this->m6_d11; }
public function setM6D11(?array $m6_d11): self { $this->m6_d11 = $m6_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d12 = [];
public function getM6D12(): ?array { return $this->m6_d12; }
public function setM6D12(?array $m6_d12): self { $this->m6_d12 = $m6_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d13 = [];
public function getM6D13(): ?array { return $this->m6_d13; }
public function setM6D13(?array $m6_d13): self { $this->m6_d13 = $m6_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d14 = [];
public function getM6D14(): ?array { return $this->m6_d14; }
public function setM6D14(?array $m6_d14): self { $this->m6_d14 = $m6_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d15 = [];
public function getM6D15(): ?array { return $this->m6_d15; }
public function setM6D15(?array $m6_d15): self { $this->m6_d15 = $m6_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d16 = [];
public function getM6D16(): ?array { return $this->m6_d16; }
public function setM6D16(?array $m6_d16): self { $this->m6_d16 = $m6_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d17 = [];
public function getM6D17(): ?array { return $this->m6_d17; }
public function setM6D17(?array $m6_d17): self { $this->m6_d17 = $m6_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d18 = [];
public function getM6D18(): ?array { return $this->m6_d18; }
public function setM6D18(?array $m6_d18): self { $this->m6_d18 = $m6_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d19 = [];
public function getM6D19(): ?array { return $this->m6_d19; }
public function setM6D19(?array $m6_d19): self { $this->m6_d19 = $m6_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d20 = [];
public function getM6D20(): ?array { return $this->m6_d20; }
public function setM6D20(?array $m6_d20): self { $this->m6_d20 = $m6_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d21 = [];
public function getM6D21(): ?array { return $this->m6_d21; }
public function setM6D21(?array $m6_d21): self { $this->m6_d21 = $m6_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d22 = [];
public function getM6D22(): ?array { return $this->m6_d22; }
public function setM6D22(?array $m6_d22): self { $this->m6_d22 = $m6_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d23 = [];
public function getM6D23(): ?array { return $this->m6_d23; }
public function setM6D23(?array $m6_d23): self { $this->m6_d23 = $m6_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d24 = [];
public function getM6D24(): ?array { return $this->m6_d24; }
public function setM6D24(?array $m6_d24): self { $this->m6_d24 = $m6_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d25 = [];
public function getM6D25(): ?array { return $this->m6_d25; }
public function setM6D25(?array $m6_d25): self { $this->m6_d25 = $m6_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d26 = [];
public function getM6D26(): ?array { return $this->m6_d26; }
public function setM6D26(?array $m6_d26): self { $this->m6_d26 = $m6_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d27 = [];
public function getM6D27(): ?array { return $this->m6_d27; }
public function setM6D27(?array $m6_d27): self { $this->m6_d27 = $m6_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d28 = [];
public function getM6D28(): ?array { return $this->m6_d28; }
public function setM6D28(?array $m6_d28): self { $this->m6_d28 = $m6_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d29 = [];
public function getM6D29(): ?array { return $this->m6_d29; }
public function setM6D29(?array $m6_d29): self { $this->m6_d29 = $m6_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d30 = [];
public function getM6D30(): ?array { return $this->m6_d30; }
public function setM6D30(?array $m6_d30): self { $this->m6_d30 = $m6_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m6_d31 = [];
public function getM6D31(): ?array { return $this->m6_d31; }
public function setM6D31(?array $m6_d31): self { $this->m6_d31 = $m6_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d1 = [];
public function getM7D1(): ?array { return $this->m7_d1; }
public function setM7D1(?array $m7_d1): self { $this->m7_d1 = $m7_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d2 = [];
public function getM7D2(): ?array { return $this->m7_d2; }
public function setM7D2(?array $m7_d2): self { $this->m7_d2 = $m7_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d3 = [];
public function getM7D3(): ?array { return $this->m7_d3; }
public function setM7D3(?array $m7_d3): self { $this->m7_d3 = $m7_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d4 = [];
public function getM7D4(): ?array { return $this->m7_d4; }
public function setM7D4(?array $m7_d4): self { $this->m7_d4 = $m7_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d5 = [];
public function getM7D5(): ?array { return $this->m7_d5; }
public function setM7D5(?array $m7_d5): self { $this->m7_d5 = $m7_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d6 = [];
public function getM7D6(): ?array { return $this->m7_d6; }
public function setM7D6(?array $m7_d6): self { $this->m7_d6 = $m7_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d7 = [];
public function getM7D7(): ?array { return $this->m7_d7; }
public function setM7D7(?array $m7_d7): self { $this->m7_d7 = $m7_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d8 = [];
public function getM7D8(): ?array { return $this->m7_d8; }
public function setM7D8(?array $m7_d8): self { $this->m7_d8 = $m7_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d9 = [];
public function getM7D9(): ?array { return $this->m7_d9; }
public function setM7D9(?array $m7_d9): self { $this->m7_d9 = $m7_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d10 = [];
public function getM7D10(): ?array { return $this->m7_d10; }
public function setM7D10(?array $m7_d10): self { $this->m7_d10 = $m7_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d11 = [];
public function getM7D11(): ?array { return $this->m7_d11; }
public function setM7D11(?array $m7_d11): self { $this->m7_d11 = $m7_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d12 = [];
public function getM7D12(): ?array { return $this->m7_d12; }
public function setM7D12(?array $m7_d12): self { $this->m7_d12 = $m7_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d13 = [];
public function getM7D13(): ?array { return $this->m7_d13; }
public function setM7D13(?array $m7_d13): self { $this->m7_d13 = $m7_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d14 = [];
public function getM7D14(): ?array { return $this->m7_d14; }
public function setM7D14(?array $m7_d14): self { $this->m7_d14 = $m7_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d15 = [];
public function getM7D15(): ?array { return $this->m7_d15; }
public function setM7D15(?array $m7_d15): self { $this->m7_d15 = $m7_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d16 = [];
public function getM7D16(): ?array { return $this->m7_d16; }
public function setM7D16(?array $m7_d16): self { $this->m7_d16 = $m7_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d17 = [];
public function getM7D17(): ?array { return $this->m7_d17; }
public function setM7D17(?array $m7_d17): self { $this->m7_d17 = $m7_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d18 = [];
public function getM7D18(): ?array { return $this->m7_d18; }
public function setM7D18(?array $m7_d18): self { $this->m7_d18 = $m7_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d19 = [];
public function getM7D19(): ?array { return $this->m7_d19; }
public function setM7D19(?array $m7_d19): self { $this->m7_d19 = $m7_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d20 = [];
public function getM7D20(): ?array { return $this->m7_d20; }
public function setM7D20(?array $m7_d20): self { $this->m7_d20 = $m7_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d21 = [];
public function getM7D21(): ?array { return $this->m7_d21; }
public function setM7D21(?array $m7_d21): self { $this->m7_d21 = $m7_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d22 = [];
public function getM7D22(): ?array { return $this->m7_d22; }
public function setM7D22(?array $m7_d22): self { $this->m7_d22 = $m7_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d23 = [];
public function getM7D23(): ?array { return $this->m7_d23; }
public function setM7D23(?array $m7_d23): self { $this->m7_d23 = $m7_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d24 = [];
public function getM7D24(): ?array { return $this->m7_d24; }
public function setM7D24(?array $m7_d24): self { $this->m7_d24 = $m7_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d25 = [];
public function getM7D25(): ?array { return $this->m7_d25; }
public function setM7D25(?array $m7_d25): self { $this->m7_d25 = $m7_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d26 = [];
public function getM7D26(): ?array { return $this->m7_d26; }
public function setM7D26(?array $m7_d26): self { $this->m7_d26 = $m7_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d27 = [];
public function getM7D27(): ?array { return $this->m7_d27; }
public function setM7D27(?array $m7_d27): self { $this->m7_d27 = $m7_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d28 = [];
public function getM7D28(): ?array { return $this->m7_d28; }
public function setM7D28(?array $m7_d28): self { $this->m7_d28 = $m7_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d29 = [];
public function getM7D29(): ?array { return $this->m7_d29; }
public function setM7D29(?array $m7_d29): self { $this->m7_d29 = $m7_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d30 = [];
public function getM7D30(): ?array { return $this->m7_d30; }
public function setM7D30(?array $m7_d30): self { $this->m7_d30 = $m7_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m7_d31 = [];
public function getM7D31(): ?array { return $this->m7_d31; }
public function setM7D31(?array $m7_d31): self { $this->m7_d31 = $m7_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d1 = [];
public function getM8D1(): ?array { return $this->m8_d1; }
public function setM8D1(?array $m8_d1): self { $this->m8_d1 = $m8_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d2 = [];
public function getM8D2(): ?array { return $this->m8_d2; }
public function setM8D2(?array $m8_d2): self { $this->m8_d2 = $m8_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d3 = [];
public function getM8D3(): ?array { return $this->m8_d3; }
public function setM8D3(?array $m8_d3): self { $this->m8_d3 = $m8_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d4 = [];
public function getM8D4(): ?array { return $this->m8_d4; }
public function setM8D4(?array $m8_d4): self { $this->m8_d4 = $m8_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d5 = [];
public function getM8D5(): ?array { return $this->m8_d5; }
public function setM8D5(?array $m8_d5): self { $this->m8_d5 = $m8_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d6 = [];
public function getM8D6(): ?array { return $this->m8_d6; }
public function setM8D6(?array $m8_d6): self { $this->m8_d6 = $m8_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d7 = [];
public function getM8D7(): ?array { return $this->m8_d7; }
public function setM8D7(?array $m8_d7): self { $this->m8_d7 = $m8_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d8 = [];
public function getM8D8(): ?array { return $this->m8_d8; }
public function setM8D8(?array $m8_d8): self { $this->m8_d8 = $m8_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d9 = [];
public function getM8D9(): ?array { return $this->m8_d9; }
public function setM8D9(?array $m8_d9): self { $this->m8_d9 = $m8_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d10 = [];
public function getM8D10(): ?array { return $this->m8_d10; }
public function setM8D10(?array $m8_d10): self { $this->m8_d10 = $m8_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d11 = [];
public function getM8D11(): ?array { return $this->m8_d11; }
public function setM8D11(?array $m8_d11): self { $this->m8_d11 = $m8_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d12 = [];
public function getM8D12(): ?array { return $this->m8_d12; }
public function setM8D12(?array $m8_d12): self { $this->m8_d12 = $m8_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d13 = [];
public function getM8D13(): ?array { return $this->m8_d13; }
public function setM8D13(?array $m8_d13): self { $this->m8_d13 = $m8_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d14 = [];
public function getM8D14(): ?array { return $this->m8_d14; }
public function setM8D14(?array $m8_d14): self { $this->m8_d14 = $m8_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d15 = [];
public function getM8D15(): ?array { return $this->m8_d15; }
public function setM8D15(?array $m8_d15): self { $this->m8_d15 = $m8_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d16 = [];
public function getM8D16(): ?array { return $this->m8_d16; }
public function setM8D16(?array $m8_d16): self { $this->m8_d16 = $m8_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d17 = [];
public function getM8D17(): ?array { return $this->m8_d17; }
public function setM8D17(?array $m8_d17): self { $this->m8_d17 = $m8_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d18 = [];
public function getM8D18(): ?array { return $this->m8_d18; }
public function setM8D18(?array $m8_d18): self { $this->m8_d18 = $m8_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d19 = [];
public function getM8D19(): ?array { return $this->m8_d19; }
public function setM8D19(?array $m8_d19): self { $this->m8_d19 = $m8_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d20 = [];
public function getM8D20(): ?array { return $this->m8_d20; }
public function setM8D20(?array $m8_d20): self { $this->m8_d20 = $m8_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d21 = [];
public function getM8D21(): ?array { return $this->m8_d21; }
public function setM8D21(?array $m8_d21): self { $this->m8_d21 = $m8_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d22 = [];
public function getM8D22(): ?array { return $this->m8_d22; }
public function setM8D22(?array $m8_d22): self { $this->m8_d22 = $m8_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d23 = [];
public function getM8D23(): ?array { return $this->m8_d23; }
public function setM8D23(?array $m8_d23): self { $this->m8_d23 = $m8_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d24 = [];
public function getM8D24(): ?array { return $this->m8_d24; }
public function setM8D24(?array $m8_d24): self { $this->m8_d24 = $m8_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d25 = [];
public function getM8D25(): ?array { return $this->m8_d25; }
public function setM8D25(?array $m8_d25): self { $this->m8_d25 = $m8_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d26 = [];
public function getM8D26(): ?array { return $this->m8_d26; }
public function setM8D26(?array $m8_d26): self { $this->m8_d26 = $m8_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d27 = [];
public function getM8D27(): ?array { return $this->m8_d27; }
public function setM8D27(?array $m8_d27): self { $this->m8_d27 = $m8_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d28 = [];
public function getM8D28(): ?array { return $this->m8_d28; }
public function setM8D28(?array $m8_d28): self { $this->m8_d28 = $m8_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d29 = [];
public function getM8D29(): ?array { return $this->m8_d29; }
public function setM8D29(?array $m8_d29): self { $this->m8_d29 = $m8_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d30 = [];
public function getM8D30(): ?array { return $this->m8_d30; }
public function setM8D30(?array $m8_d30): self { $this->m8_d30 = $m8_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m8_d31 = [];
public function getM8D31(): ?array { return $this->m8_d31; }
public function setM8D31(?array $m8_d31): self { $this->m8_d31 = $m8_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d1 = [];
public function getM9D1(): ?array { return $this->m9_d1; }
public function setM9D1(?array $m9_d1): self { $this->m9_d1 = $m9_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d2 = [];
public function getM9D2(): ?array { return $this->m9_d2; }
public function setM9D2(?array $m9_d2): self { $this->m9_d2 = $m9_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d3 = [];
public function getM9D3(): ?array { return $this->m9_d3; }
public function setM9D3(?array $m9_d3): self { $this->m9_d3 = $m9_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d4 = [];
public function getM9D4(): ?array { return $this->m9_d4; }
public function setM9D4(?array $m9_d4): self { $this->m9_d4 = $m9_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d5 = [];
public function getM9D5(): ?array { return $this->m9_d5; }
public function setM9D5(?array $m9_d5): self { $this->m9_d5 = $m9_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d6 = [];
public function getM9D6(): ?array { return $this->m9_d6; }
public function setM9D6(?array $m9_d6): self { $this->m9_d6 = $m9_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d7 = [];
public function getM9D7(): ?array { return $this->m9_d7; }
public function setM9D7(?array $m9_d7): self { $this->m9_d7 = $m9_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d8 = [];
public function getM9D8(): ?array { return $this->m9_d8; }
public function setM9D8(?array $m9_d8): self { $this->m9_d8 = $m9_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d9 = [];
public function getM9D9(): ?array { return $this->m9_d9; }
public function setM9D9(?array $m9_d9): self { $this->m9_d9 = $m9_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d10 = [];
public function getM9D10(): ?array { return $this->m9_d10; }
public function setM9D10(?array $m9_d10): self { $this->m9_d10 = $m9_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d11 = [];
public function getM9D11(): ?array { return $this->m9_d11; }
public function setM9D11(?array $m9_d11): self { $this->m9_d11 = $m9_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d12 = [];
public function getM9D12(): ?array { return $this->m9_d12; }
public function setM9D12(?array $m9_d12): self { $this->m9_d12 = $m9_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d13 = [];
public function getM9D13(): ?array { return $this->m9_d13; }
public function setM9D13(?array $m9_d13): self { $this->m9_d13 = $m9_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d14 = [];
public function getM9D14(): ?array { return $this->m9_d14; }
public function setM9D14(?array $m9_d14): self { $this->m9_d14 = $m9_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d15 = [];
public function getM9D15(): ?array { return $this->m9_d15; }
public function setM9D15(?array $m9_d15): self { $this->m9_d15 = $m9_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d16 = [];
public function getM9D16(): ?array { return $this->m9_d16; }
public function setM9D16(?array $m9_d16): self { $this->m9_d16 = $m9_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d17 = [];
public function getM9D17(): ?array { return $this->m9_d17; }
public function setM9D17(?array $m9_d17): self { $this->m9_d17 = $m9_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d18 = [];
public function getM9D18(): ?array { return $this->m9_d18; }
public function setM9D18(?array $m9_d18): self { $this->m9_d18 = $m9_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d19 = [];
public function getM9D19(): ?array { return $this->m9_d19; }
public function setM9D19(?array $m9_d19): self { $this->m9_d19 = $m9_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d20 = [];
public function getM9D20(): ?array { return $this->m9_d20; }
public function setM9D20(?array $m9_d20): self { $this->m9_d20 = $m9_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d21 = [];
public function getM9D21(): ?array { return $this->m9_d21; }
public function setM9D21(?array $m9_d21): self { $this->m9_d21 = $m9_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d22 = [];
public function getM9D22(): ?array { return $this->m9_d22; }
public function setM9D22(?array $m9_d22): self { $this->m9_d22 = $m9_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d23 = [];
public function getM9D23(): ?array { return $this->m9_d23; }
public function setM9D23(?array $m9_d23): self { $this->m9_d23 = $m9_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d24 = [];
public function getM9D24(): ?array { return $this->m9_d24; }
public function setM9D24(?array $m9_d24): self { $this->m9_d24 = $m9_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d25 = [];
public function getM9D25(): ?array { return $this->m9_d25; }
public function setM9D25(?array $m9_d25): self { $this->m9_d25 = $m9_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d26 = [];
public function getM9D26(): ?array { return $this->m9_d26; }
public function setM9D26(?array $m9_d26): self { $this->m9_d26 = $m9_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d27 = [];
public function getM9D27(): ?array { return $this->m9_d27; }
public function setM9D27(?array $m9_d27): self { $this->m9_d27 = $m9_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d28 = [];
public function getM9D28(): ?array { return $this->m9_d28; }
public function setM9D28(?array $m9_d28): self { $this->m9_d28 = $m9_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d29 = [];
public function getM9D29(): ?array { return $this->m9_d29; }
public function setM9D29(?array $m9_d29): self { $this->m9_d29 = $m9_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d30 = [];
public function getM9D30(): ?array { return $this->m9_d30; }
public function setM9D30(?array $m9_d30): self { $this->m9_d30 = $m9_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m9_d31 = [];
public function getM9D31(): ?array { return $this->m9_d31; }
public function setM9D31(?array $m9_d31): self { $this->m9_d31 = $m9_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d1 = [];
public function getM10D1(): ?array { return $this->m10_d1; }
public function setM10D1(?array $m10_d1): self { $this->m10_d1 = $m10_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d2 = [];
public function getM10D2(): ?array { return $this->m10_d2; }
public function setM10D2(?array $m10_d2): self { $this->m10_d2 = $m10_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d3 = [];
public function getM10D3(): ?array { return $this->m10_d3; }
public function setM10D3(?array $m10_d3): self { $this->m10_d3 = $m10_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d4 = [];
public function getM10D4(): ?array { return $this->m10_d4; }
public function setM10D4(?array $m10_d4): self { $this->m10_d4 = $m10_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d5 = [];
public function getM10D5(): ?array { return $this->m10_d5; }
public function setM10D5(?array $m10_d5): self { $this->m10_d5 = $m10_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d6 = [];
public function getM10D6(): ?array { return $this->m10_d6; }
public function setM10D6(?array $m10_d6): self { $this->m10_d6 = $m10_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d7 = [];
public function getM10D7(): ?array { return $this->m10_d7; }
public function setM10D7(?array $m10_d7): self { $this->m10_d7 = $m10_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d8 = [];
public function getM10D8(): ?array { return $this->m10_d8; }
public function setM10D8(?array $m10_d8): self { $this->m10_d8 = $m10_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d9 = [];
public function getM10D9(): ?array { return $this->m10_d9; }
public function setM10D9(?array $m10_d9): self { $this->m10_d9 = $m10_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d10 = [];
public function getM10D10(): ?array { return $this->m10_d10; }
public function setM10D10(?array $m10_d10): self { $this->m10_d10 = $m10_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d11 = [];
public function getM10D11(): ?array { return $this->m10_d11; }
public function setM10D11(?array $m10_d11): self { $this->m10_d11 = $m10_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d12 = [];
public function getM10D12(): ?array { return $this->m10_d12; }
public function setM10D12(?array $m10_d12): self { $this->m10_d12 = $m10_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d13 = [];
public function getM10D13(): ?array { return $this->m10_d13; }
public function setM10D13(?array $m10_d13): self { $this->m10_d13 = $m10_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d14 = [];
public function getM10D14(): ?array { return $this->m10_d14; }
public function setM10D14(?array $m10_d14): self { $this->m10_d14 = $m10_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d15 = [];
public function getM10D15(): ?array { return $this->m10_d15; }
public function setM10D15(?array $m10_d15): self { $this->m10_d15 = $m10_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d16 = [];
public function getM10D16(): ?array { return $this->m10_d16; }
public function setM10D16(?array $m10_d16): self { $this->m10_d16 = $m10_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d17 = [];
public function getM10D17(): ?array { return $this->m10_d17; }
public function setM10D17(?array $m10_d17): self { $this->m10_d17 = $m10_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d18 = [];
public function getM10D18(): ?array { return $this->m10_d18; }
public function setM10D18(?array $m10_d18): self { $this->m10_d18 = $m10_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d19 = [];
public function getM10D19(): ?array { return $this->m10_d19; }
public function setM10D19(?array $m10_d19): self { $this->m10_d19 = $m10_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d20 = [];
public function getM10D20(): ?array { return $this->m10_d20; }
public function setM10D20(?array $m10_d20): self { $this->m10_d20 = $m10_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d21 = [];
public function getM10D21(): ?array { return $this->m10_d21; }
public function setM10D21(?array $m10_d21): self { $this->m10_d21 = $m10_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d22 = [];
public function getM10D22(): ?array { return $this->m10_d22; }
public function setM10D22(?array $m10_d22): self { $this->m10_d22 = $m10_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d23 = [];
public function getM10D23(): ?array { return $this->m10_d23; }
public function setM10D23(?array $m10_d23): self { $this->m10_d23 = $m10_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d24 = [];
public function getM10D24(): ?array { return $this->m10_d24; }
public function setM10D24(?array $m10_d24): self { $this->m10_d24 = $m10_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d25 = [];
public function getM10D25(): ?array { return $this->m10_d25; }
public function setM10D25(?array $m10_d25): self { $this->m10_d25 = $m10_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d26 = [];
public function getM10D26(): ?array { return $this->m10_d26; }
public function setM10D26(?array $m10_d26): self { $this->m10_d26 = $m10_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d27 = [];
public function getM10D27(): ?array { return $this->m10_d27; }
public function setM10D27(?array $m10_d27): self { $this->m10_d27 = $m10_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d28 = [];
public function getM10D28(): ?array { return $this->m10_d28; }
public function setM10D28(?array $m10_d28): self { $this->m10_d28 = $m10_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d29 = [];
public function getM10D29(): ?array { return $this->m10_d29; }
public function setM10D29(?array $m10_d29): self { $this->m10_d29 = $m10_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d30 = [];
public function getM10D30(): ?array { return $this->m10_d30; }
public function setM10D30(?array $m10_d30): self { $this->m10_d30 = $m10_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m10_d31 = [];
public function getM10D31(): ?array { return $this->m10_d31; }
public function setM10D31(?array $m10_d31): self { $this->m10_d31 = $m10_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d1 = [];
public function getM11D1(): ?array { return $this->m11_d1; }
public function setM11D1(?array $m11_d1): self { $this->m11_d1 = $m11_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d2 = [];
public function getM11D2(): ?array { return $this->m11_d2; }
public function setM11D2(?array $m11_d2): self { $this->m11_d2 = $m11_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d3 = [];
public function getM11D3(): ?array { return $this->m11_d3; }
public function setM11D3(?array $m11_d3): self { $this->m11_d3 = $m11_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d4 = [];
public function getM11D4(): ?array { return $this->m11_d4; }
public function setM11D4(?array $m11_d4): self { $this->m11_d4 = $m11_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d5 = [];
public function getM11D5(): ?array { return $this->m11_d5; }
public function setM11D5(?array $m11_d5): self { $this->m11_d5 = $m11_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d6 = [];
public function getM11D6(): ?array { return $this->m11_d6; }
public function setM11D6(?array $m11_d6): self { $this->m11_d6 = $m11_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d7 = [];
public function getM11D7(): ?array { return $this->m11_d7; }
public function setM11D7(?array $m11_d7): self { $this->m11_d7 = $m11_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d8 = [];
public function getM11D8(): ?array { return $this->m11_d8; }
public function setM11D8(?array $m11_d8): self { $this->m11_d8 = $m11_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d9 = [];
public function getM11D9(): ?array { return $this->m11_d9; }
public function setM11D9(?array $m11_d9): self { $this->m11_d9 = $m11_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d10 = [];
public function getM11D10(): ?array { return $this->m11_d10; }
public function setM11D10(?array $m11_d10): self { $this->m11_d10 = $m11_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d11 = [];
public function getM11D11(): ?array { return $this->m11_d11; }
public function setM11D11(?array $m11_d11): self { $this->m11_d11 = $m11_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d12 = [];
public function getM11D12(): ?array { return $this->m11_d12; }
public function setM11D12(?array $m11_d12): self { $this->m11_d12 = $m11_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d13 = [];
public function getM11D13(): ?array { return $this->m11_d13; }
public function setM11D13(?array $m11_d13): self { $this->m11_d13 = $m11_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d14 = [];
public function getM11D14(): ?array { return $this->m11_d14; }
public function setM11D14(?array $m11_d14): self { $this->m11_d14 = $m11_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d15 = [];
public function getM11D15(): ?array { return $this->m11_d15; }
public function setM11D15(?array $m11_d15): self { $this->m11_d15 = $m11_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d16 = [];
public function getM11D16(): ?array { return $this->m11_d16; }
public function setM11D16(?array $m11_d16): self { $this->m11_d16 = $m11_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d17 = [];
public function getM11D17(): ?array { return $this->m11_d17; }
public function setM11D17(?array $m11_d17): self { $this->m11_d17 = $m11_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d18 = [];
public function getM11D18(): ?array { return $this->m11_d18; }
public function setM11D18(?array $m11_d18): self { $this->m11_d18 = $m11_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d19 = [];
public function getM11D19(): ?array { return $this->m11_d19; }
public function setM11D19(?array $m11_d19): self { $this->m11_d19 = $m11_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d20 = [];
public function getM11D20(): ?array { return $this->m11_d20; }
public function setM11D20(?array $m11_d20): self { $this->m11_d20 = $m11_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d21 = [];
public function getM11D21(): ?array { return $this->m11_d21; }
public function setM11D21(?array $m11_d21): self { $this->m11_d21 = $m11_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d22 = [];
public function getM11D22(): ?array { return $this->m11_d22; }
public function setM11D22(?array $m11_d22): self { $this->m11_d22 = $m11_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d23 = [];
public function getM11D23(): ?array { return $this->m11_d23; }
public function setM11D23(?array $m11_d23): self { $this->m11_d23 = $m11_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d24 = [];
public function getM11D24(): ?array { return $this->m11_d24; }
public function setM11D24(?array $m11_d24): self { $this->m11_d24 = $m11_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d25 = [];
public function getM11D25(): ?array { return $this->m11_d25; }
public function setM11D25(?array $m11_d25): self { $this->m11_d25 = $m11_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d26 = [];
public function getM11D26(): ?array { return $this->m11_d26; }
public function setM11D26(?array $m11_d26): self { $this->m11_d26 = $m11_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d27 = [];
public function getM11D27(): ?array { return $this->m11_d27; }
public function setM11D27(?array $m11_d27): self { $this->m11_d27 = $m11_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d28 = [];
public function getM11D28(): ?array { return $this->m11_d28; }
public function setM11D28(?array $m11_d28): self { $this->m11_d28 = $m11_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d29 = [];
public function getM11D29(): ?array { return $this->m11_d29; }
public function setM11D29(?array $m11_d29): self { $this->m11_d29 = $m11_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d30 = [];
public function getM11D30(): ?array { return $this->m11_d30; }
public function setM11D30(?array $m11_d30): self { $this->m11_d30 = $m11_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m11_d31 = [];
public function getM11D31(): ?array { return $this->m11_d31; }
public function setM11D31(?array $m11_d31): self { $this->m11_d31 = $m11_d31; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d1 = [];
public function getM12D1(): ?array { return $this->m12_d1; }
public function setM12D1(?array $m12_d1): self { $this->m12_d1 = $m12_d1; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d2 = [];
public function getM12D2(): ?array { return $this->m12_d2; }
public function setM12D2(?array $m12_d2): self { $this->m12_d2 = $m12_d2; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d3 = [];
public function getM12D3(): ?array { return $this->m12_d3; }
public function setM12D3(?array $m12_d3): self { $this->m12_d3 = $m12_d3; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d4 = [];
public function getM12D4(): ?array { return $this->m12_d4; }
public function setM12D4(?array $m12_d4): self { $this->m12_d4 = $m12_d4; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d5 = [];
public function getM12D5(): ?array { return $this->m12_d5; }
public function setM12D5(?array $m12_d5): self { $this->m12_d5 = $m12_d5; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d6 = [];
public function getM12D6(): ?array { return $this->m12_d6; }
public function setM12D6(?array $m12_d6): self { $this->m12_d6 = $m12_d6; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d7 = [];
public function getM12D7(): ?array { return $this->m12_d7; }
public function setM12D7(?array $m12_d7): self { $this->m12_d7 = $m12_d7; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d8 = [];
public function getM12D8(): ?array { return $this->m12_d8; }
public function setM12D8(?array $m12_d8): self { $this->m12_d8 = $m12_d8; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d9 = [];
public function getM12D9(): ?array { return $this->m12_d9; }
public function setM12D9(?array $m12_d9): self { $this->m12_d9 = $m12_d9; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d10 = [];
public function getM12D10(): ?array { return $this->m12_d10; }
public function setM12D10(?array $m12_d10): self { $this->m12_d10 = $m12_d10; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d11 = [];
public function getM12D11(): ?array { return $this->m12_d11; }
public function setM12D11(?array $m12_d11): self { $this->m12_d11 = $m12_d11; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d12 = [];
public function getM12D12(): ?array { return $this->m12_d12; }
public function setM12D12(?array $m12_d12): self { $this->m12_d12 = $m12_d12; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d13 = [];
public function getM12D13(): ?array { return $this->m12_d13; }
public function setM12D13(?array $m12_d13): self { $this->m12_d13 = $m12_d13; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d14 = [];
public function getM12D14(): ?array { return $this->m12_d14; }
public function setM12D14(?array $m12_d14): self { $this->m12_d14 = $m12_d14; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d15 = [];
public function getM12D15(): ?array { return $this->m12_d15; }
public function setM12D15(?array $m12_d15): self { $this->m12_d15 = $m12_d15; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d16 = [];
public function getM12D16(): ?array { return $this->m12_d16; }
public function setM12D16(?array $m12_d16): self { $this->m12_d16 = $m12_d16; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d17 = [];
public function getM12D17(): ?array { return $this->m12_d17; }
public function setM12D17(?array $m12_d17): self { $this->m12_d17 = $m12_d17; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d18 = [];
public function getM12D18(): ?array { return $this->m12_d18; }
public function setM12D18(?array $m12_d18): self { $this->m12_d18 = $m12_d18; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d19 = [];
public function getM12D19(): ?array { return $this->m12_d19; }
public function setM12D19(?array $m12_d19): self { $this->m12_d19 = $m12_d19; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d20 = [];
public function getM12D20(): ?array { return $this->m12_d20; }
public function setM12D20(?array $m12_d20): self { $this->m12_d20 = $m12_d20; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d21 = [];
public function getM12D21(): ?array { return $this->m12_d21; }
public function setM12D21(?array $m12_d21): self { $this->m12_d21 = $m12_d21; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d22 = [];
public function getM12D22(): ?array { return $this->m12_d22; }
public function setM12D22(?array $m12_d22): self { $this->m12_d22 = $m12_d22; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d23 = [];
public function getM12D23(): ?array { return $this->m12_d23; }
public function setM12D23(?array $m12_d23): self { $this->m12_d23 = $m12_d23; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d24 = [];
public function getM12D24(): ?array { return $this->m12_d24; }
public function setM12D24(?array $m12_d24): self { $this->m12_d24 = $m12_d24; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d25 = [];
public function getM12D25(): ?array { return $this->m12_d25; }
public function setM12D25(?array $m12_d25): self { $this->m12_d25 = $m12_d25; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d26 = [];
public function getM12D26(): ?array { return $this->m12_d26; }
public function setM12D26(?array $m12_d26): self { $this->m12_d26 = $m12_d26; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d27 = [];
public function getM12D27(): ?array { return $this->m12_d27; }
public function setM12D27(?array $m12_d27): self { $this->m12_d27 = $m12_d27; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d28 = [];
public function getM12D28(): ?array { return $this->m12_d28; }
public function setM12D28(?array $m12_d28): self { $this->m12_d28 = $m12_d28; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d29 = [];
public function getM12D29(): ?array { return $this->m12_d29; }
public function setM12D29(?array $m12_d29): self { $this->m12_d29 = $m12_d29; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d30 = [];
public function getM12D30(): ?array { return $this->m12_d30; }
public function setM12D30(?array $m12_d30): self { $this->m12_d30 = $m12_d30; return $this; }
/**
* @ORM\Column(type="json", nullable=true)
* @Groups({"worker.manage.base.timesheet", "timesheet.for.stakeholder", "timesheet.for.customer", "timesheet.collected.base"})
*/
private $m12_d31 = [];
/**
* @ORM\OneToOne(targetEntity=WorkerTimesheetHistories::class, mappedBy="worker_timesheet", cascade={"persist", "remove"})
* @Groups({
* "timesheet.history"
* })
*/
private $worker_timesheet_histories;
public function getM12D31(): ?array { return $this->m12_d31; }
public function setM12D31(?array $m12_d31): self { $this->m12_d31 = $m12_d31; return $this; }
public function getWorkerTimesheetHistories(): ?WorkerTimesheetHistories
{
return $this->worker_timesheet_histories;
}
public function setWorkerTimesheetHistories(?WorkerTimesheetHistories $workerTimesheetHistories): self
{
// unset the owning side of the relation if necessary
if ($workerTimesheetHistories === null && $this->worker_timesheet_histories !== null) {
$this->worker_timesheet_histories->setWorkerTimesheet(null);
}
// set the owning side of the relation if necessary
if ($workerTimesheetHistories !== null && $workerTimesheetHistories->getWorkerTimesheet() !== $this) {
$workerTimesheetHistories->setWorkerTimesheet($this);
}
$this->worker_timesheet_histories = $workerTimesheetHistories;
return $this;
}
}