'integer', 'user_uid' => '?integer', ]; protected $attributes = [ 'clientinfo_uid' => null, 'user_uid' => null, 'title' => '', 'bank' => '', 'alias' => '', 'issue_at' => '', 'amount' => 0, 'balance' => 0, 'status' => '', 'content' => '' ]; public function __construct(array|null $data = null) { parent::__construct($data); } //기본기능 public function getBank(): string { return $this->bank ?? ''; } public function getAlias(): string { return $this->alias ?? ''; } public function getIssueAt(): string { return $this->issue_at ?? ''; } }