123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\index\controller;
- use think\Controller;
- class Cabinet extends Controller{
- /**
- * 检查取件码
- */
- public function check_fcode(){
- $code = input('param.code');
- }
- /**
- * 自提柜向服务器上报
- */
- public function record_store(){
- $order_sn = input('param.order_sn');
- $trunk = input('param.trunk');
- $cabinet = input('param.cabinet');
- $state = input('param.state');
- }
- /**
- * 自提柜向服务器上报用户取走商品。
- */
- public function record_fetch(){
- $trunk = input('param.trunk');
- $cabinet = input('param.cabinet');
- $state = input('param.state');
- }
- }
|