Files

31 lines
545 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\model\work;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
/**
* 企业微信内部标签
* Class WorkLabel
* @package app\model\work
*/
class WorkLabel extends BaseModel
{
use ModelTrait;
/**
* @var string
*/
protected $name = 'work_label';
/**
* @var string
*/
protected $key = 'id';
}