'sensor_log', # 显示给用户看的名称 'lang' => '传感器日志', 'menu' => false, 'order' => 20, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', //'search' => 'order', //'list' => true, ), /* 'id' => array ( 'type' => 'varchar-50', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_string', 'search' => 'order', '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})', ), 'product_sensor_id' => array ( 'type' => 'int-11', 'name' => '传感器名称', 'default' => '', 'desc' => '传感器名称', 'match' => 'is_numeric', 'update' => 'text', 'list' => 'Dever::load("device/product_sensor-one#name", {product_sensor_id})', ), 'value' => array ( 'type' => 'varchar-500', 'name' => '数据', 'default' => '', 'desc' => '数据', 'match' => 'is_string', 'update' => 'textarea', 'search' => 'fulltext', 'list' => '"{value}{unit}"', //'modal' => '查看详情', ), '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', ), 'exp' => array ( 'type' => 'varchar-500', 'name' => '数据计算公式', 'default' => '', 'desc' => '数据计算公式', 'match' => 'is_string', 'update' => 'textarea', 'search' => 'fulltext', 'list' => true, //'modal' => '查看详情', ), 'cdate' => array ( 'type' => 'int-11', 'name' => '入库时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, 'search' => 'order', 'list' => 'date("Y-m-d H:i:s", {cdate})', ), ), 'manage' => array ( 'insert' => false, 'edit' => false, ), # request 请求接口定义 'request' => array ( 'getByCdate' => array ( 'option' => array ( 'code_id' => 'yes', 'start' => array('yes-cdate', '>='), 'end' => array('yes-cdate', '<='), ), 'type' => 'all', 'order' => 'id', 'col' => '*', ), 'getAll' => array ( # 匹配的正则或函数 选填项 'option' => array ( 'product_id' => 'yes', 'product_sensor_id' => 'yes', 'start' => array('yes-cdate', '>='), 'end' => array('yes-cdate', '<='), ), 'type' => 'all', 'order' => array('cdate', 'desc'), 'limit' => array(100, 0), 'col' => '*', ), 'getNewOne' => array ( # 匹配的正则或函数 选填项 'option' => array ( 'product_id' => 'yes', 'product_sensor_id' => 'yes', ), 'type' => 'all', 'order' => array('cdate', 'desc'), 'limit' => array(1, 0), 'col' => '*', ), ), );