12345678910111213141516171819202122 |
- <?php
- namespace Product\Lib;
- use Dever;
- class Unit
- {
- # 添加新单位
- public function add_api()
- {
- $where['name'] = Dever::input('value');
- if (!$where['name']) {
- Dever::alert('请输入单位名称');
- }
- $info = Dever::db('product/unit')->find($where);
- if (!$info) {
- $info['id'] = Dever::db('product/unit')->insert($where);
- }
- return $info;
- }
- }
|