src/Entity/Customer.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  5. /**
  6.  * Customer
  7.  *
  8.  * @ORM\Entity
  9.  * @ORM\Table(name="customer")
  10.  */
  11. class Customer implements PasswordAuthenticatedUserInterface
  12. {
  13.     // In your entity's constructor:
  14.     public function __construct()
  15.     {
  16.         // Set to a date far in the past that you treat as "never logged in"
  17.         $this->lastLogin = new \DateTime('1900-01-01 00:00:00');
  18.     }
  19.     /**
  20.      * @var int
  21.      *
  22.      * @ORM\Column(name="customer_id", type="integer", nullable=false)
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="IDENTITY")
  25.      */
  26.     private $customerId '0';
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="satznr", type="string", length=10, nullable=false)
  31.      */
  32.     private $satznr "";
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="login_name", type="string", length=40, nullable=false)
  37.      */
  38.     private $loginName '';
  39.     /**
  40.      * @var string|null
  41.      *
  42.      * @ORM\Column(name="cust_code", type="string", length=32, nullable=true)
  43.      */
  44.     private $custCode '';
  45.     /**
  46.      * @var string
  47.      *
  48.      * @ORM\Column(name="title", type="string", length=4, nullable=false)
  49.      */
  50.     private $title '';
  51.     /**
  52.      * @var string
  53.      *
  54.      * @ORM\Column(name="first_name", type="string", length=64, nullable=false)
  55.      */
  56.     private $firstName '';
  57.     /**
  58.      * @var string
  59.      *
  60.      * @ORM\Column(name="last_name", type="string", length=32, nullable=false)
  61.      */
  62.     private $lastName '';
  63.     /**
  64.      * @var int
  65.      *
  66.      * @ORM\Column(name="tocid", type="integer", nullable=false)
  67.      */
  68.     private $tocid '0';
  69.     /**
  70.      * @var string|null
  71.      *
  72.      * @ORM\Column(name="address1", type="string", length=64, nullable=true)
  73.      */
  74.     private $address1 '';
  75.     /**
  76.      * @var string|null
  77.      *
  78.      * @ORM\Column(name="address2", type="string", length=64, nullable=true)
  79.      */
  80.     private $address2 '';
  81.     /**
  82.      * @var string|null
  83.      *
  84.      * @ORM\Column(name="address3", type="string", length=64, nullable=true)
  85.      */
  86.     private $address3 '';
  87.     /**
  88.      * @var string
  89.      *
  90.      * @ORM\Column(name="street", type="string", length=64, nullable=false)
  91.      */
  92.     private $street '';
  93.     /**
  94.      * @var string|null
  95.      *
  96.      * @ORM\Column(name="zip_code", type="string", length=6, nullable=true)
  97.      */
  98.     private $zipCode;
  99.     /**
  100.      * @var string|null
  101.      *
  102.      * @ORM\Column(name="city", type="string", length=32, nullable=true)
  103.      */
  104.     private $city;
  105.     /**
  106.      * @var int
  107.      *
  108.      * @ORM\Column(name="country_id", type="integer", nullable=false)
  109.      */
  110.     private $countryId '0';
  111.     /**
  112.      * @var string
  113.      *
  114.      * @ORM\Column(name="lkz", type="string", length=2, nullable=false)
  115.      */
  116.     private $lkz '';
  117.     /**
  118.      * @var string|null
  119.      *
  120.      * @ORM\Column(name="password", type="string", length=255, nullable=true)
  121.      */
  122.     private $password;
  123.     /**
  124.      * @var string|null
  125.      *
  126.      * @ORM\Column(name="mailadr", type="string", length=64, nullable=true)
  127.      */
  128.     private $mailadr;
  129.     /**
  130.      * @var string|null
  131.      *
  132.      * @ORM\Column(name="tel", type="string", length=32, nullable=true)
  133.      */
  134.     private $tel;
  135.     /**
  136.      * @var string|null
  137.      *
  138.      * @ORM\Column(name="fax", type="string", length=32, nullable=true)
  139.      */
  140.     private $fax;
  141.     /**
  142.      * @var int
  143.      *
  144.      * @ORM\Column(name="price_id", type="integer", nullable=false)
  145.      */
  146.     private $priceId '0';
  147.     /**
  148.      * @var int
  149.      *
  150.      * @ORM\Column(name="category", type="integer", nullable=false, options={"default"="1"})
  151.      */
  152.     private $category 1;
  153.     /**
  154.      * @var int
  155.      *
  156.      * @ORM\Column(name="type", type="integer", nullable=false, options={"default"="1"})
  157.      */
  158.     private $type 1;
  159.     /**
  160.      * @var int
  161.      *
  162.      * @ORM\Column(name="customer_care", type="integer", nullable=false, options={"default"="1"})
  163.      */
  164.     private $customerCare 1;
  165.     /**
  166.      * @var int
  167.      *
  168.      * @ORM\Column(name="prodinfo", type="integer", nullable=false)
  169.      */
  170.     private $prodinfo '0';
  171.     /**
  172.      * @var string|null
  173.      *
  174.      * @ORM\Column(name="taxid", type="string", length=32, nullable=true)
  175.      */
  176.     private $taxid;
  177.     /**
  178.      * @var string|null
  179.      *
  180.      * @ORM\Column(name="taxnr", type="string", length=32, nullable=true)
  181.      */
  182.     private $taxnr;
  183.     /**
  184.      * @var string|null
  185.      *
  186.      * @ORM\Column(name="academic", type="string", length=10, nullable=true)
  187.      */
  188.     private $academic;
  189.     /**
  190.      * @var int
  191.      *
  192.      * @ORM\Column(name="reg_id", type="integer", nullable=false)
  193.      */
  194.     private $regId '0';
  195.     /**
  196.      * @var string|null
  197.      *
  198.      * @ORM\Column(name="gebdat", type="string", length=64, nullable=true)
  199.      */
  200.     private $gebdat;
  201.     /**
  202.      * @var int
  203.      *
  204.      * @ORM\Column(name="stock_type", type="integer", nullable=false, options={"default"="1"})
  205.      */
  206.     private $stockType 1;
  207.     /**
  208.      * @var string
  209.      *
  210.      * @ORM\Column(name="agb", type="string", length=1, nullable=false, options={"default"="N","fixed"=true})
  211.      */
  212.     private $agb 'N';
  213.     /**
  214.      * @var string
  215.      *
  216.      * @ORM\Column(name="bendata_favorite", type="string", length=1, nullable=false, options={"fixed"=true})
  217.      */
  218.     private $bendataFavorite '';
  219.     /**
  220.      * @var \DateTime
  221.      *
  222.      * @ORM\Column(name="last_login", type="datetime", nullable=false)
  223.      */
  224.     private $lastLogin;
  225.     /**
  226.      * @var string
  227.      *
  228.      * @ORM\Column(name="rights", type="string", length=5, nullable=false)
  229.      */
  230.     private $rights '';
  231.     /**
  232.      * @var string
  233.      *
  234.      * @ORM\Column(name="techniker", type="string", length=1, nullable=false, options={"default"="N","fixed"=true})
  235.      */
  236.     private $techniker 'N';
  237.     /**
  238.      * @var string
  239.      *
  240.      * @ORM\Column(name="bonus", type="string", length=1, nullable=false, options={"default"="N","fixed"=true})
  241.      */
  242.     private $bonus 'N';
  243.     /**
  244.      * @var string
  245.      *
  246.      * @ORM\Column(name="premium", type="string", length=1, nullable=false, options={"default"="N","fixed"=true})
  247.      */
  248.     private $premium 'N';
  249.     /**
  250.      * @var string
  251.      *
  252.      * @ORM\Column(name="diffship", type="string", length=1, nullable=false, options={"default"="J","fixed"=true})
  253.      */
  254.     private $diffship 'J';
  255.     /**
  256.      * @var string
  257.      *
  258.      * @ORM\Column(name="access_denied", type="string", length=1, nullable=false, options={"default"="N","fixed"=true})
  259.      */
  260.     private $accessDenied 'N';
  261.     /**
  262.      * @var string
  263.      *
  264.      * @ORM\Column(name="dl_granted", type="string", length=1, nullable=false, options={"default"="J","fixed"=true})
  265.      */
  266.     private $dlGranted 'J';
  267.     /**
  268.      * @var string
  269.      *
  270.      * @ORM\Column(name="abteilung", type="string", length=64, nullable=false)
  271.      */
  272.     private $abteilung '';
  273.     /**
  274.      * @var string
  275.      *
  276.      * @ORM\Column(name="registry_by", type="string", length=1, nullable=false, options={"default"="B","fixed"=true})
  277.      */
  278.     private $registryBy 'B';
  279.     /**
  280.      * @var int
  281.      *
  282.      * @ORM\Column(name="verk", type="integer", nullable=false)
  283.      */
  284.     private $verk '0';
  285.     /**
  286.      * @var string
  287.      *
  288.      * @ORM\Column(name="showtopartikel", type="string", length=1, nullable=false, options={"default"="1"})
  289.      */
  290.     private $showtopartikel '1';
  291.     /**
  292.      * @var string
  293.      *
  294.      * @ORM\Column(name="nowerbung", type="string", length=1, nullable=false)
  295.      */
  296.     private $nowerbung '';
  297.     /**
  298.      * @var float
  299.      *
  300.      * @ORM\Column(name="freiHausab", type="float", precision=10, scale=0, nullable=false)
  301.      */
  302.     private $freihausab '0.0';
  303.     /**
  304.      * @var string
  305.      *
  306.      * @ORM\Column(name="showcartartikel", type="string", length=1, nullable=false, options={"default"="1"})
  307.      */
  308.     private $showcartartikel '1';
  309.     /**
  310.      * @var int
  311.      *
  312.      * @ORM\Column(name="kostenstellen", type="integer", nullable=false)
  313.      */
  314.     private $kostenstellen 0;
  315.     /**
  316.      * @var int
  317.      *
  318.      * @ORM\Column(name="bemerkung", type="integer", nullable=false)
  319.      */
  320.     private $bemerkung '0';
  321.     /**
  322.      * @var int
  323.      *
  324.      * @ORM\Column(name="vorabservice", type="integer", nullable=false)
  325.      */
  326.     private $vorabservice 0;
  327.     /**
  328.      * @var int
  329.      *
  330.      * @ORM\Column(name="manuals", type="integer", nullable=false)
  331.      */
  332.     private $manuals '0';
  333.     /**
  334.      * @var int
  335.      *
  336.      * @ORM\Column(name="meinedrucker", type="integer", nullable=false)
  337.      */
  338.     private $meinedrucker '0';
  339.     /**
  340.      * @var int
  341.      *
  342.      * @ORM\Column(name="add_shipcategory", type="integer", nullable=false)
  343.      */
  344.     private $addShipcategory '0';
  345.     /**
  346.      * @var int
  347.      *
  348.      * @ORM\Column(name="delivery_id", type="integer", nullable=false)
  349.      */
  350.     private $deliveryId '0';
  351.     /**
  352.      * @var int
  353.      *
  354.      * @ORM\Column(name="nogift", type="integer", nullable=false)
  355.      */
  356.     private $nogift '0';
  357.     /**
  358.      * @var int
  359.      *
  360.      * @ORM\Column(name="admin", type="integer", nullable=false)
  361.      */
  362.     private $admin '0';
  363.     /**
  364.      * @var string
  365.      *
  366.      * @ORM\Column(name="sprache", type="string", length=3, nullable=false)
  367.      */
  368.     private $sprach '';
  369.     /**
  370.      * @var int
  371.      *
  372.      * @ORM\Column(name="downloadsperre", type="integer", nullable=false, options={"default"="60"})
  373.      */
  374.     private $downloadsperre 60;
  375.     /**
  376.      * @var string
  377.      *
  378.      * @ORM\Column(name="online_confirm", type="string", length=5, nullable=false, options={"default"="Ja"})
  379.      */
  380.     private $onlineConfirm 'Ja';
  381.     /**
  382.      * @var int
  383.      *
  384.      * @ORM\Column(name="eigene_artnr", type="integer", nullable=false)
  385.      */
  386.     private $eigeneArtnr '0';
  387.     /**
  388.      * @var int
  389.      *
  390.      * @ORM\Column(name="meldung_wk", type="integer", nullable=false, options={"default"="1"})
  391.      */
  392.     private $meldungWk 1;
  393.     public function getCustomerId(): ?int
  394.     {
  395.         return $this->customerId;
  396.     }
  397.     public function getSatznr(): ?string
  398.     {
  399.         return $this->satznr;
  400.     }
  401.     public function setSatznr(string $satznr): self
  402.     {
  403.         $this->satznr $satznr;
  404.         return $this;
  405.     }
  406.     public function getLoginName(): ?string
  407.     {
  408.         return $this->loginName;
  409.     }
  410.     public function setName(string $loginName): self
  411.     {
  412.         $this->loginName $loginName;
  413.         return $this;
  414.     }
  415.     public function getCustCode(): ?string
  416.     {
  417.         return $this->custCode;
  418.     }
  419.     public function setCustCode(?string $custCode): self
  420.     {
  421.         $this->custCode $custCode;
  422.         return $this;
  423.     }
  424.     public function getTitle(): ?string
  425.     {
  426.         return $this->title;
  427.     }
  428.     public function setTitle(string $title): self
  429.     {
  430.         $this->title $title;
  431.         return $this;
  432.     }
  433.     public function getFirstName(): ?string
  434.     {
  435.         return $this->firstName;
  436.     }
  437.     public function setFirstName(string $firstName): self
  438.     {
  439.         $this->firstName $firstName;
  440.         return $this;
  441.     }
  442.     public function getLastName(): ?string
  443.     {
  444.         return $this->lastName;
  445.     }
  446.     public function setLastName(string $lastName): self
  447.     {
  448.         $this->lastName $lastName;
  449.         return $this;
  450.     }
  451.     public function getTocid(): ?int
  452.     {
  453.         return $this->tocid;
  454.     }
  455.     public function setTocid(int $tocid): self
  456.     {
  457.         $this->tocid $tocid;
  458.         return $this;
  459.     }
  460.     public function getAddress1(): ?string
  461.     {
  462.         return $this->address1;
  463.     }
  464.     public function setAddress1(?string $address1): self
  465.     {
  466.         $this->address1 $address1;
  467.         return $this;
  468.     }
  469.     public function getAddress2(): ?string
  470.     {
  471.         return $this->address2;
  472.     }
  473.     public function setAddress2(?string $address2): self
  474.     {
  475.         $this->address2 $address2;
  476.         return $this;
  477.     }
  478.     public function getAddress3(): ?string
  479.     {
  480.         return $this->address3;
  481.     }
  482.     public function setAddress3(?string $address3): self
  483.     {
  484.         $this->address3 $address3;
  485.         return $this;
  486.     }
  487.     public function getStreet(): ?string
  488.     {
  489.         return $this->street;
  490.     }
  491.     public function setStreet(string $street): self
  492.     {
  493.         $this->street $street;
  494.         return $this;
  495.     }
  496.     public function getZipCode(): ?string
  497.     {
  498.         return $this->zipCode;
  499.     }
  500.     public function setZipCode(?string $zipCode): self
  501.     {
  502.         $this->zipCode $zipCode;
  503.         return $this;
  504.     }
  505.     public function getCity(): ?string
  506.     {
  507.         return $this->city;
  508.     }
  509.     public function setCity(?string $city): self
  510.     {
  511.         $this->city $city;
  512.         return $this;
  513.     }
  514.     public function getCountryId(): ?int
  515.     {
  516.         return $this->countryId;
  517.     }
  518.     public function setCountryId(int $countryId): self
  519.     {
  520.         $this->countryId $countryId;
  521.         return $this;
  522.     }
  523.     public function getLkz(): ?string
  524.     {
  525.         return $this->lkz;
  526.     }
  527.     public function setLkz(string $lkz): self
  528.     {
  529.         $this->lkz $lkz;
  530.         return $this;
  531.     }
  532.     public function getPassword(): ?string
  533.     {
  534.         return $this->password;
  535.     }
  536.     public function setPassword(?string $password): self
  537.     {
  538.         $this->password $password;
  539.         return $this;
  540.     }
  541.     public function getMailadr(): ?string
  542.     {
  543.         return $this->mailadr;
  544.     }
  545.     public function setMailadr(?string $mailadr): self
  546.     {
  547.         $this->mailadr $mailadr;
  548.         return $this;
  549.     }
  550.     public function getTel(): ?string
  551.     {
  552.         return $this->tel;
  553.     }
  554.     public function setTel(?string $tel): self
  555.     {
  556.         $this->tel $tel;
  557.         return $this;
  558.     }
  559.     public function getFax(): ?string
  560.     {
  561.         return $this->fax;
  562.     }
  563.     public function setFax(?string $fax): self
  564.     {
  565.         $this->fax $fax;
  566.         return $this;
  567.     }
  568.     public function getPriceId(): ?int
  569.     {
  570.         return $this->priceId;
  571.     }
  572.     public function setPriceId(int $priceId): self
  573.     {
  574.         $this->priceId $priceId;
  575.         return $this;
  576.     }
  577.     public function getCategory(): ?int
  578.     {
  579.         return $this->category;
  580.     }
  581.     public function setCategory(int $category): self
  582.     {
  583.         $this->category $category;
  584.         return $this;
  585.     }
  586.     public function getType(): ?int
  587.     {
  588.         return $this->type;
  589.     }
  590.     public function setType(int $type): self
  591.     {
  592.         $this->type $type;
  593.         return $this;
  594.     }
  595.     public function getCustomerCare(): ?int
  596.     {
  597.         return $this->customerCare;
  598.     }
  599.     public function setCustomerCare(int $customerCare): self
  600.     {
  601.         $this->customerCare $customerCare;
  602.         return $this;
  603.     }
  604.     public function getProdinfo(): ?int
  605.     {
  606.         return $this->prodinfo;
  607.     }
  608.     public function setProdinfo(int $prodinfo): self
  609.     {
  610.         $this->prodinfo $prodinfo;
  611.         return $this;
  612.     }
  613.     public function getTaxid(): ?string
  614.     {
  615.         return $this->taxid;
  616.     }
  617.     public function setTaxid(?string $taxid): self
  618.     {
  619.         $this->taxid $taxid;
  620.         return $this;
  621.     }
  622.     public function getTaxnr(): ?string
  623.     {
  624.         return $this->taxnr;
  625.     }
  626.     public function setTaxnr(?string $taxnr): self
  627.     {
  628.         $this->taxnr $taxnr;
  629.         return $this;
  630.     }
  631.     public function getAcademic(): ?string
  632.     {
  633.         return $this->academic;
  634.     }
  635.     public function setAcademic(?string $academic): self
  636.     {
  637.         $this->academic $academic;
  638.         return $this;
  639.     }
  640.     public function getRegId(): ?int
  641.     {
  642.         return $this->regId;
  643.     }
  644.     public function setRegId(int $regId): self
  645.     {
  646.         $this->regId $regId;
  647.         return $this;
  648.     }
  649.     public function getGebdat(): ?string
  650.     {
  651.         return $this->gebdat;
  652.     }
  653.     public function setGebdat(?string $gebdat): self
  654.     {
  655.         $this->gebdat $gebdat;
  656.         return $this;
  657.     }
  658.     public function getStockType(): ?int
  659.     {
  660.         return $this->stockType;
  661.     }
  662.     public function setStockType(int $stockType): self
  663.     {
  664.         $this->stockType $stockType;
  665.         return $this;
  666.     }
  667.     public function getAgb(): ?string
  668.     {
  669.         return $this->agb;
  670.     }
  671.     public function setAgb(string $agb): self
  672.     {
  673.         $this->agb $agb;
  674.         return $this;
  675.     }
  676.     public function getBendataFavorite(): ?string
  677.     {
  678.         return $this->bendataFavorite;
  679.     }
  680.     public function setBendataFavorite(string $bendataFavorite): self
  681.     {
  682.         $this->bendataFavorite $bendataFavorite;
  683.         return $this;
  684.     }
  685.     public function getLastLogin(): ?\DateTimeInterface
  686.     {
  687.         return $this->lastLogin;
  688.     }
  689.     public function setLastLogin(\DateTimeInterface $lastLogin): self
  690.     {
  691.         $this->lastLogin $lastLogin;
  692.         return $this;
  693.     }
  694.     public function getRights(): ?string
  695.     {
  696.         return $this->rights;
  697.     }
  698.     public function setRights(string $rights): self
  699.     {
  700.         $this->rights $rights;
  701.         return $this;
  702.     }
  703.     public function getTechniker(): ?string
  704.     {
  705.         return $this->techniker;
  706.     }
  707.     public function setTechniker(string $techniker): self
  708.     {
  709.         $this->techniker $techniker;
  710.         return $this;
  711.     }
  712.     public function getBonus(): ?string
  713.     {
  714.         return $this->bonus;
  715.     }
  716.     public function setBonus(string $bonus): self
  717.     {
  718.         $this->bonus $bonus;
  719.         return $this;
  720.     }
  721.     public function getPremium(): ?string
  722.     {
  723.         return $this->premium;
  724.     }
  725.     public function setPremium(string $premium): self
  726.     {
  727.         $this->premium $premium;
  728.         return $this;
  729.     }
  730.     public function getDiffship(): ?string
  731.     {
  732.         return $this->diffship;
  733.     }
  734.     public function setDiffship(string $diffship): self
  735.     {
  736.         $this->diffship $diffship;
  737.         return $this;
  738.     }
  739.     public function getAccessDenied(): ?string
  740.     {
  741.         return $this->accessDenied;
  742.     }
  743.     public function setAccessDenied(string $accessDenied): self
  744.     {
  745.         $this->accessDenied $accessDenied;
  746.         return $this;
  747.     }
  748.     public function getDlGranted(): ?string
  749.     {
  750.         return $this->dlGranted;
  751.     }
  752.     public function setDlGranted(string $dlGranted): self
  753.     {
  754.         $this->dlGranted $dlGranted;
  755.         return $this;
  756.     }
  757.     public function getAbteilung(): ?string
  758.     {
  759.         return $this->abteilung;
  760.     }
  761.     public function setAbteilung(string $abteilung): self
  762.     {
  763.         $this->abteilung $abteilung;
  764.         return $this;
  765.     }
  766.     public function getRegistryBy(): ?string
  767.     {
  768.         return $this->registryBy;
  769.     }
  770.     public function setRegistryBy(string $registryBy): self
  771.     {
  772.         $this->registryBy $registryBy;
  773.         return $this;
  774.     }
  775.     public function getVerk(): ?int
  776.     {
  777.         return $this->verk;
  778.     }
  779.     public function setVerk(int $verk): self
  780.     {
  781.         $this->verk $verk;
  782.         return $this;
  783.     }
  784.     public function getShowtopartikel(): ?string
  785.     {
  786.         return $this->showtopartikel;
  787.     }
  788.     public function setShowtopartikel(string $showtopartikel): self
  789.     {
  790.         $this->showtopartikel $showtopartikel;
  791.         return $this;
  792.     }
  793.     public function getNowerbung(): ?string
  794.     {
  795.         return $this->nowerbung;
  796.     }
  797.     public function setNowerbung(string $nowerbung): self
  798.     {
  799.         $this->nowerbung $nowerbung;
  800.         return $this;
  801.     }
  802.     public function getFreihausab(): ?float
  803.     {
  804.         return $this->freihausab;
  805.     }
  806.     public function setFreihausab(float $freihausab): self
  807.     {
  808.         $this->freihausab $freihausab;
  809.         return $this;
  810.     }
  811.     public function getShowcartartikel(): ?string
  812.     {
  813.         return $this->showcartartikel;
  814.     }
  815.     public function setShowcartartikel(string $showcartartikel): self
  816.     {
  817.         $this->showcartartikel $showcartartikel;
  818.         return $this;
  819.     }
  820.     public function getKostenstellen(): ?int
  821.     {
  822.         return $this->kostenstellen;
  823.     }
  824.     public function setKostenstellen(int $kostenstellen): self
  825.     {
  826.         $this->kostenstellen $kostenstellen;
  827.         return $this;
  828.     }
  829.     public function getBemerkung(): ?int
  830.     {
  831.         return $this->bemerkung;
  832.     }
  833.     public function setBemerkung(int $bemerkung): self
  834.     {
  835.         $this->bemerkung $bemerkung;
  836.         return $this;
  837.     }
  838.     public function getVorabservice(): ?int
  839.     {
  840.         return $this->vorabservice;
  841.     }
  842.     public function setVorabservice(int $vorabservice): self
  843.     {
  844.         $this->vorabservice $vorabservice;
  845.         return $this;
  846.     }
  847.     public function getManuals(): ?int
  848.     {
  849.         return $this->manuals;
  850.     }
  851.     public function setManuals(int $manuals): self
  852.     {
  853.         $this->manuals $manuals;
  854.         return $this;
  855.     }
  856.     public function getMeinedrucker(): ?int
  857.     {
  858.         return $this->meinedrucker;
  859.     }
  860.     public function setMeinedrucker(int $meinedrucker): self
  861.     {
  862.         $this->meinedrucker $meinedrucker;
  863.         return $this;
  864.     }
  865.     public function getAddShipcategory(): ?int
  866.     {
  867.         return $this->addShipcategory;
  868.     }
  869.     public function setAddShipcategory(int $addShipcategory): self
  870.     {
  871.         $this->addShipcategory $addShipcategory;
  872.         return $this;
  873.     }
  874.     public function getDeliveryId(): ?int
  875.     {
  876.         return $this->deliveryId;
  877.     }
  878.     public function setDeliveryId(int $deliveryId): self
  879.     {
  880.         $this->deliveryId $deliveryId;
  881.         return $this;
  882.     }
  883.     public function getNogift(): ?int
  884.     {
  885.         return $this->nogift;
  886.     }
  887.     public function setNogift(int $nogift): self
  888.     {
  889.         $this->nogift $nogift;
  890.         return $this;
  891.     }
  892.     public function getAdmin(): ?int
  893.     {
  894.         return $this->admin;
  895.     }
  896.     public function setAdmin(int $admin): self
  897.     {
  898.         $this->admin $admin;
  899.         return $this;
  900.     }
  901.     public function getSprache(): ?string
  902.     {
  903.         return $this->sprache;
  904.     }
  905.     public function setSprache(string $sprache): self
  906.     {
  907.         $this->sprache $sprache;
  908.         return $this;
  909.     }
  910.     public function getDownloadsperre(): ?int
  911.     {
  912.         return $this->downloadsperre;
  913.     }
  914.     public function setDownloadsperre(int $downloadsperre): self
  915.     {
  916.         $this->downloadsperre $downloadsperre;
  917.         return $this;
  918.     }
  919.     public function getOnlineConfirm(): ?string
  920.     {
  921.         return $this->onlineConfirm;
  922.     }
  923.     public function setOnlineConfirm(string $onlineConfirm): self
  924.     {
  925.         $this->onlineConfirm $onlineConfirm;
  926.         return $this;
  927.     }
  928.     public function getEigeneArtnr(): ?int
  929.     {
  930.         return $this->eigeneArtnr;
  931.     }
  932.     public function setEigeneArtnr(int $eigeneArtnr): self
  933.     {
  934.         $this->eigeneArtnr $eigeneArtnr;
  935.         return $this;
  936.     }
  937.     public function getMeldungWk(): ?int
  938.     {
  939.         return $this->meldungWk;
  940.     }
  941.     public function setMeldungWk(int $meldungWk): self
  942.     {
  943.         $this->meldungWk $meldungWk;
  944.         return $this;
  945.     }
  946.     /**
  947.      * @param string $loginName
  948.      */
  949.     public function setLoginName(string $loginName): void
  950.     {
  951.         $this->loginName $loginName;
  952.     }
  953. }