123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?php
- # 定义几个常用的选项
- $option = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- $status = array
- (
- 1 => '未执行',
- 2 => '已执行-已发送给客户端',
- 3 => '完成执行-客户端发出响应',
- );
- $type = array
- (
- 1 => '普通',
- 2 => '显示在统计',
- );
- return array
- (
- # 表名
- 'name' => 'product_sensor',
- # 显示给用户看的名称
- 'lang' => '设备当前数据',
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'order' => 'desc',
- //'list' => true,
- ),
-
- 'product_id' => array
- (
- 'type' => 'int-11',
- 'name' => '成品设备',
- 'default' => '',
- 'desc' => '请输入设备ID',
- 'match' => 'is_numeric',
- 'update' => 'text',
- ),
- 'device_id' => array
- (
- 'type' => 'int-11',
- 'name' => '基础设备',
- 'default' => '',
- 'desc' => '请输入基础设备',
- 'match' => 'is_numeric',
- 'update' => 'text',
- ),
-
- 'sensor_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,
- ),
- '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}"',
- ),
- 'unit' => array
- (
- 'type' => 'varchar-30',
- 'name' => '单位',
- 'default' => '',
- 'desc' => '单位',
- 'match' => 'is_string',
- 'update' => 'text',
- //'search' => 'fulltext',
- //'list' => true,
- ),
- 'send' => array
- (
- 'type' => 'varchar-500',
- 'name' => '发送的数据',
- 'default' => '',
- 'desc' => '发送的数据',
- 'match' => 'is_string',
- 'update' => 'textarea',
- //'list' => true,
- ),
-
- 'receive' => array
- (
- 'type' => 'varchar-500',
- 'name' => '接收到的数据',
- 'default' => '',
- 'desc' => '接收到的数据',
- 'match' => 'is_string',
- //'update' => 'text',
- ),
-
- 'reorder' => array
- (
- 'type' => 'int-11',
- 'name' => '排序-数值越大越靠前',
- 'default' => '1',
- 'desc' => '请输入排序',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'order',
- //'list' => true,
- 'order' => 'desc',
- 'edit' => true,
- ),
- 'status' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '运行状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- 'option' => $status,
- //'update' => 'radio',
- ),
-
- '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})',
- ),
- ),
-
- //'auth' => 'company',
-
- 'manage' => array
- (
- 'insert' => false,
- //'edit' => false,
- 'list_button' => array
- (
- //11 => array('控制设备', '"farm_device_set&option_farm_device_id={id}"'),
- //12 => array('数据记录', '"farm_device_data&option_farm_device_id={id}"'),
- 6 => '删除'
- ),
- ),
-
- # request 请求接口定义
- 'request' => array
- (
-
- ),
- );
|