145 lines
2.2 KiB
PHP
145 lines
2.2 KiB
PHP
<?php
|
|
namespace FddCloud\bean\req;
|
|
|
|
class FieldFillDate
|
|
{
|
|
public $required;
|
|
public $defaultValue;
|
|
public $dateFormat;
|
|
public $width;
|
|
public $height;
|
|
public $fontType;
|
|
public $fontSize;
|
|
public $alignment;
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getRequired()
|
|
{
|
|
return $this->required;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $required
|
|
*/
|
|
public function setRequired($required)
|
|
{
|
|
$this->required = $required;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getDefaultValue()
|
|
{
|
|
return $this->defaultValue;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $defaultValue
|
|
*/
|
|
public function setDefaultValue($defaultValue)
|
|
{
|
|
$this->defaultValue = $defaultValue;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getDateFormat()
|
|
{
|
|
return $this->dateFormat;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $dateFormat
|
|
*/
|
|
public function setDateFormat($dateFormat)
|
|
{
|
|
$this->dateFormat = $dateFormat;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getWidth()
|
|
{
|
|
return $this->width;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $width
|
|
*/
|
|
public function setWidth($width)
|
|
{
|
|
$this->width = $width;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getHeight()
|
|
{
|
|
return $this->height;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $height
|
|
*/
|
|
public function setHeight($height)
|
|
{
|
|
$this->height = $height;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getFontType()
|
|
{
|
|
return $this->fontType;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $fontType
|
|
*/
|
|
public function setFontType($fontType)
|
|
{
|
|
$this->fontType = $fontType;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getFontSize()
|
|
{
|
|
return $this->fontSize;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $fontSize
|
|
*/
|
|
public function setFontSize($fontSize)
|
|
{
|
|
$this->fontSize = $fontSize;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getAlignment()
|
|
{
|
|
return $this->alignment;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $alignment
|
|
*/
|
|
public function setAlignment($alignment)
|
|
{
|
|
$this->alignment = $alignment;
|
|
}
|
|
|
|
}
|
|
|