DNewCommissionTask.Class.php 613 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * 新分销合伙人表
  4. */
  5. namespace JinDouYun\Dao\CommissionPartner;
  6. use JinDouYun\Dao\BaseDao;
  7. class DNewCommissionTask extends BaseDao
  8. {
  9. public function __construct($serviceDB = 'default')
  10. {
  11. $this->_table = 'new_commission_task';
  12. $this->_primary = 'id';
  13. $this->_fields = [
  14. "id",
  15. "orderId",
  16. "title",
  17. "mono",
  18. "status",
  19. "run_time",
  20. "time",
  21. "enterpriseId",
  22. "type"
  23. ];
  24. $this->_readonly = ['id'];
  25. parent::__construct($serviceDB);
  26. }
  27. }