62 lines
1.8 KiB
PHP
62 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Customer;
|
|
|
|
use App\Entities\Customer\CouponEntity;
|
|
|
|
class CouponModel extends CustomerModel
|
|
{
|
|
const TABLE = "couponinfo";
|
|
const PK = "uid";
|
|
const TITLE = "title";
|
|
protected $table = self::TABLE;
|
|
protected $primaryKey = self::PK;
|
|
protected $returnType = CouponEntity::class;
|
|
protected $allowedFields = [
|
|
"user_uid",
|
|
"clientinfo_uid",
|
|
"title",
|
|
"cnt",
|
|
"status",
|
|
"updated_at"
|
|
];
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
public function getFormRule(string $action, string $field): string
|
|
{
|
|
if (is_array($field)) {
|
|
throw new \Exception(__FUNCTION__ . "=> field가 array 입니다.\n" . var_export($field, true));
|
|
}
|
|
switch ($field) {
|
|
case "user_uid":
|
|
case "clientinfo_uid":
|
|
case "cnt":
|
|
$rule = "required|numeric";
|
|
break;
|
|
case "title":
|
|
case "status":
|
|
$rule = "required|trim|string";
|
|
break;
|
|
default:
|
|
$rule = parent::getFormRule($action, $field);
|
|
break;
|
|
}
|
|
return $rule;
|
|
}
|
|
final public function create(array $formDatas): CouponEntity
|
|
{
|
|
// 관리자 UID는 현재 인증된 사용자로 설정
|
|
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
|
|
return parent::create($formDatas);
|
|
}
|
|
//수정
|
|
final public function modify(mixed $entity, array $formDatas): CouponEntity
|
|
{
|
|
// 관리자 UID는 현재 인증된 사용자로 설정
|
|
$formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo();
|
|
return parent::modify($entity, $formDatas);
|
|
}
|
|
}
|