12345678910111213141516171819 |
- <?php
- namespace app\model;
- use think\Model;
- class AccountBatchLogModel extends Model
- {
- protected $table = 'fc_account_batch_log';
- protected $pk = 'id';
- //状态
- public static $status_wait_handle = 1;//待处理
- public static $status_handle_ing = 2;//处理中
- public static $status_handle_success = 3;//处理成功
- public static $status_handle_fail = 4;//处理失败
- }
|