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.

WorkGroupMsgRelationDao.php 350B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\dao\work;
  3. use app\dao\BaseDao;
  4. use app\model\work\WorkGroupMsgRelation;
  5. /**
  6. * Class WorkGroupMsgRelationDao
  7. * @package app\dao\work
  8. */
  9. class WorkGroupMsgRelationDao extends BaseDao
  10. {
  11. /**
  12. * @return string
  13. */
  14. protected function setModel(): string
  15. {
  16. return WorkGroupMsgRelation::class;
  17. }
  18. }