You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WorkLabelDao.php 334B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\dao\work;
  3. use app\dao\BaseDao;
  4. use app\model\work\WorkLabel;
  5. /**
  6. * 企业微信内部标签
  7. * Class WorkLabelDao
  8. * @package app\dao\work
  9. */
  10. class WorkLabelDao extends BaseDao
  11. {
  12. /**
  13. * @return string
  14. */
  15. protected function setModel(): string
  16. {
  17. return WorkLabel::class;
  18. }
  19. }