www

呆错文章管理系统所使用的数据库字段说明

呆错文章管理系统(简称DaiCuoCms)内容模型所使用到的数据库初始基础字段与初始扩展字段适用于1.2.23版本及以上!

呆错文章管理系统内容模型所使用到的数据库初始基础字段与扩展字段列表与说明如下。

info开头的为基础字段,cms开头的为扩展字段、后台自定义的字段可以与此一起结合使用。

通常在模板开发时需要使用到这些字段、可用于foreach循环标签内,也可以用于详情页标签。

以下呆错文章管理系统内容模型所使用到的数据库初始字段与扩展字段适用于1.2.23版本及以上!

info_id 文章IDinfo_name 文章标题info_slug 文章唯一标识、通常为拼音info_excerpt 文章摘要info_content 文章详情info_password 文章密码info_create_time 创建时间info_update_time 修复时间info_parent 上级IDinfo_order 权重值info_user_id 所属用户IDinfo_type 文章类型(index|image|album|video|auido|link)info_status 文章状态(public|hidden)info_views 浏览值info_hits 点击值info_module 应用名(cms)info_controll 模块名(detail)info_action 操作名(index)info_title 独立SEO标题info_keywords 独立SEO关键字info_description 独立SEO描述cms_color 标题颜色(text-muted|text-danger...)cms_cover 文章封面cms_slide 头条封面cms_up 点赞值cms_down 点踩值cms_referer 来源网址cms_letter 首字母cms_tpl 独立模板名cms_top 是否置顶(1|0)cms_recommend 是否推荐(1|0)cms_fast 是否快审(1|0)cms_head 是否头条(1|0)

呆错文章管理系统功能说明

pbootcms如何用表格进行数据批量导入

先看插入语句是

INSERT INTO `ay_content`(`id`, `acode`, `scode`, `subscode`, `title`, `titlecolor`, `subtitle`, `filename`, `author`, `source`, `outlink`, `date`, `ico`, `pics`, `picstitle`, `content`, `tags`, `enclosure`, `keywords`, `description`, `sorting`, `status`, `istop`, `isrecommend`, `isheadline`, `visits`, `likes`, `oppose`, `create_user`, `update_user`, `create_time`, `update_time`, `gtype`, `gid`, `gnote`) VALUES

('35756','cn', '36', '', '美女壁纸', '#333333', '', '', '超级管理员', '本站', '', '2022-11-20 13:35:18', '/static/upload/image/20221023/3.jpg', '', '', '', '', '', '', '', 255, '1', '0', '0', '0', 0, 0, 0, 'admin', 'admin', '2022-11-20 13:39:33', '2022-11-20 13:39:33', '4', '0', ''),

('35757','cn', '36', '', '美女壁纸', '#333333', '', '', '超级管理员', '本站', '', '2022-11-20 13:35:18', '/static/upload/image/20221023/4.jpg', '', '', '', '', '', '', '', 255, '1', '0', '0', '0', 0, 0, 0, 'admin', 'admin', '2022-11-20 13:39:33', '2022-11-20 13:39:33', '4', '0', ''),

根据规则下拉生成想需要的内容

然后经过复制处理用记事本进行清洗格式 替换错误的地方

构建好内容去数据库中执行mysql语句即可