dbmsv4/app/Models/Customer/PointModel.php
2025-12-01 14:58:06 +09:00

30 lines
595 B
PHP

<?php
namespace App\Models\Customer;
use App\Entities\Customer\PointEntity;
class PointModel extends CustomerModel
{
const TABLE = "pointinfo";
const PK = "uid";
const TITLE = "title";
protected $table = self::TABLE;
protected $primaryKey = self::PK;
protected $returnType = PointEntity::class;
protected $allowedFields = [
"uid",
"user_uid",
"clientinfo_uid",
"title",
"content",
"cnt",
"status",
"updated_at"
];
public function __construct()
{
parent::__construct();
}
}