AccountBatchLogModel.php 404 B

12345678910111213141516171819
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class AccountBatchLogModel extends Model
  5. {
  6. protected $table = 'fc_account_batch_log';
  7. protected $pk = 'id';
  8. //状态
  9. public static $status_wait_handle = 1;//待处理
  10. public static $status_handle_ing = 2;//处理中
  11. public static $status_handle_success = 3;//处理成功
  12. public static $status_handle_fail = 4;//处理失败
  13. }