12345678910111213141516 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\model;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class Pay extends Model
- {
- protected $createTime='addtime';
- protected $updateTime='updatetime';
- public static $status=["待提交","待买方审核","审核通过","审核驳回","对账单无效"];
- }
|