IcePHP框架中的快速后台中的通用CRUD功能框架(四) 表配置文件
return Array(
'id' => Array(
'name' => 'id',
'scale' => '',
'type' => 'int',
'maxLength' => '11',
'simpleType' => 'R',
'notNull' => '1',
'primaryKey' => '1',
'autoIncrement' => '1',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '',
),
'adm_name' => Array(
'name' => 'adm_name',
'scale' => '',
'type' => 'varchar',
'maxLength' => '25',
'simpleType' => 'C',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '管理员名字',
),
'adm_pwd' => Array(
'name' => 'adm_pwd',
'scale' => '',
'type' => 'varchar',
'maxLength' => '64',
'simpleType' => 'C',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '密码',
),
'status' => Array(
'name' => 'status',
'scale' => '',
'type' => 'tinyint',
'maxLength' => '1',
'simpleType' => 'L',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '1',
'defaultValue' => '1',
'description' => '0:禁用 1:启用',
),
'sort' => Array(
'name' => 'sort',
'scale' => '',
'type' => 'int',
'maxLength' => '11',
'simpleType' => 'I',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '排序',
),
'endtime' => Array(
'name' => 'endtime',
'scale' => '',
'type' => 'varchar',
'maxLength' => '30',
'simpleType' => 'C',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '最后登陆的时间',
),
'endip' => Array(
'name' => 'endip',
'scale' => '',
'type' => 'varchar',
'maxLength' => '20',
'simpleType' => 'C',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '最后登录的ip',
),
'count' => Array(
'name' => 'count',
'scale' => '',
'type' => 'int',
'maxLength' => '11',
'simpleType' => 'I',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '登录的次数',
),
'createtime' => Array(
'name' => 'createtime',
'scale' => '',
'type' => 'varchar',
'maxLength' => '30',
'simpleType' => 'C',
'notNull' => '',
'primaryKey' => '',
'autoIncrement' => '',
'binary' => '',
'unsigned' => '',
'hasDefault' => '',
'description' => '创建的时间',
),
);
以上就是IcePHP框架中的快速后台中的通用CRUD功能框架(四) 表配置文件的内容,更多相关内容请关注PHP中文网(www.php.cn)!
下一篇: 工具|PHP格式化输出数组
推荐阅读
-
IcePHP框架中的快速后台中的通用CRUD功能框架(六) SCrudField 字段类
-
IcePHP框架中的快速后台中的通用CRUD功能框架(五) SCrud 主控类
-
IcePHP框架中的快速后台中的通用CRUD功能框架(四) 表配置文件
-
IcePHP框架中的快速后台中的通用CRUD功能框架(三) 具体业务示例
-
IcePHP框架中的快速后台中的通用CRUD功能框架(二)
-
IcePHP框架中的快速后台中的通用CRUD功能框架
-
IcePHP框架中的快速后台中的通用CRUD功能框架(五) SCrud 主控类
-
IcePHP框架中的快速后台中的通用CRUD功能框架(六) SCrudField 字段类
-
IcePHP框架中的快速后台中的通用CRUD功能框架(四) 表配置文件
-
IcePHP框架中的快速后台中的通用CRUD功能框架(三) 具体业务示例