<?php


namespace app\api\model;


use think\Model;

class SpecValue extends Model
{
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    protected $name = 'litestore_spec_value';
    protected $createTime = 'createtime';
    protected $updateTime = '';
}