<?php

namespace app\model;

use support\Model;

class HealthyProduct extends Model
{
    protected $table = 'healthy_product';

    protected $primaryKey = 'product_id';

    protected $dateFormat = 'U';

    public const CREATED_AT = 'product_addTime';

    public const UPDATED_AT = 'product_updateTime';
}