123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <?php
- # 定义几个常用的选项
- $option = array
- (
- 1 => '可用',
- 2 => '不可用',
- );
- $than = array
- (
- 1 => '大于',
- 2 => '小于',
- 3 => '大于等于',
- 4 => '小于等于',
- 5 => '等于',
- );
- $type = array
- (
- 1 => '传感器',
- //2 => '控制器',
- //3 => '信号器',
- );
- $oper = array
- (
- 1 => '单次操作',
- 2 => '周期操作',
- //3 => '信号器',
- );
- return array
- (
- 'config' => array
- (
- 'type' => $type,
- 'than' => $than,
- 'oper' => $oper,
- ),
- # 表名
- 'name' => 'user_set',
- # 显示给用户看的名称
- 'lang' => '用户智能设置',
- 'menu' => false,
- # 后台菜单排序
- 'order' => 10,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'order' => 'desc',
- //'list' => true,
- ),
- 'uid' => array
- (
- 'type' => 'int-11',
- 'name' => '用户',
- 'default' => '',
- 'desc' => '请选择用户',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'in' => true,
- 'list' => 'Dever::load("passport/user-one#username", {uid})',
- 'autocomplete' => array('passport/manage.user?json=1', 'uid', 'passport/user-info#username'),
- ),
-
- 'product_id' => array
- (
- 'type' => 'int-11',
- 'name' => '产品',
- 'default' => '',
- 'desc' => '请选择产品',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'in' => true,
- 'list' => 'Dever::load("device/data.product_info#name", {product_id})',
- 'autocomplete' => array('device/manage.product?json=1', 'product_id', 'device/data.product_info#name'),
- ),
- 'device_id' => array
- (
- 'type' => 'int-11',
- 'name' => '基础设备',
- 'default' => '',
- 'desc' => '请输入基础设备',
- 'match' => 'is_numeric',
- 'update' => 'text',
- ),
- 'type' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '元件类型',
- 'default' => '1',
- 'desc' => '请选择元件类型',
- 'match' => 'is_numeric',
- 'option' => $type,
- 'update' => 'radio',
- 'search' => 'select',
- 'list' => true,
- ),
-
- 'element_id' => array
- (
- 'type' => 'int-11',
- 'name' => '元件',
- 'default' => '',
- 'desc' => '元件',
- 'match' => 'is_numeric',
- 'update' => 'text',
- //'list' => 'Dever::load("device/sensor-one#name", {sensor_id})',
- ),
- 'name' => array
- (
- 'type' => 'varchar-80',
- 'name' => '名称',
- 'default' => '',
- 'desc' => '名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
- 'exp' => array
- (
- 'type' => 'varchar-80',
- 'name' => '计算公式',
- 'default' => '',
- 'desc' => '计算公式',
- 'match' => 'is_string',
- 'update' => 'text',
- 'list' => true,
- ),
- 'than' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '表达式',
- 'default' => '1',
- 'desc' => '请选择表达式',
- 'match' => 'is_numeric',
- 'option' => $than,
- 'update' => 'radio',
- 'list' => true,
- ),
- 'value' => array
- (
- 'type' => 'varchar-500',
- 'name' => '表达式的值',
- 'default' => '',
- 'desc' => '数据',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- //'list' => '{reorder} == 10000 ? Dever::mdate("{value}") : "{value}{dw}"',
- 'list' => '"{value}{unit}"',
- ),
- 'time' => array
- (
- 'type' => 'int-11',
- 'name' => '间隔时间',
- 'default' => '',
- 'desc' => '间隔时间',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'result' => array
- (
- 'type' => 'varchar-1000',
- 'name' => '执行指令',
- 'default' => '',
- 'desc' => '执行指令',
- 'match' => 'is_string',
- 'update' => 'textarea',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- 'option' => $option,
- 'update' => 'radio',
- 'list' => true,
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
-
- 'manage' => array
- (
- # 不允许编辑
- 'edit' => false,
- 'insert' => false,
- ),
-
- # request 请求接口定义
- 'request' => array
- (
-
- ),
- );
|