// +---------------------------------------------------------------------- namespace app\model\diy; use crmeb\basic\BaseModel; use crmeb\traits\ModelTrait; /** * 主题下载记录模型 * 对应表:eb_theme_download * 字段:id, title, tid, download_time, download_url * @author wuhaotian * @email 442384644@qq.com * @date 2026/3/10 */ class ThemeDownload extends BaseModel { use ModelTrait; /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'theme_download'; }