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.

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\model\work;
  3. use crmeb\basic\BaseModel;
  4. use crmeb\traits\ModelTrait;
  5. /**
  6. * 企业微信内部标签
  7. * Class WorkLabel
  8. * @package app\model\work
  9. */
  10. class WorkLabel extends BaseModel
  11. {
  12. use ModelTrait;
  13. /**
  14. * @var string
  15. */
  16. protected $name = 'work_label';
  17. /**
  18. * @var string
  19. */
  20. protected $key = 'id';
  21. }