7 changed files with 187 additions and 40 deletions
@ -0,0 +1,48 @@
|
||||
<?php |
||||
|
||||
namespace Plugins\Notebook\Enums; |
||||
|
||||
use App\Enums\EnumStatusTrait; |
||||
use Sc\Util\HtmlElement\ElementType\AbstractHtmlElement; |
||||
|
||||
/** |
||||
* 笔记协作人员 : 权限 |
||||
*/ |
||||
enum NotebookUserEnumMode :int |
||||
{ |
||||
use EnumStatusTrait; |
||||
|
||||
/** |
||||
* 只读 |
||||
*/ |
||||
case ReadOnly = 1; |
||||
|
||||
/** |
||||
* 读写 |
||||
*/ |
||||
case ReadingAndWriting = 2; |
||||
|
||||
/** |
||||
* 获取描述 |
||||
* |
||||
* @return string |
||||
*/ |
||||
public function getDes(): string |
||||
{ |
||||
return match ($this) { |
||||
self::ReadOnly => '只读', |
||||
self::ReadingAndWriting => '读写', |
||||
}; |
||||
} |
||||
|
||||
/** |
||||
* 转标签 |
||||
*/ |
||||
public function toTag():AbstractHtmlElement |
||||
{ |
||||
return match ($this){ |
||||
self::ReadOnly => $this->getTag('success', 'light'), |
||||
self::ReadingAndWriting => $this->getTag('warning', 'light'), |
||||
}; |
||||
} |
||||
} |
@ -0,0 +1,48 @@
|
||||
<?php |
||||
|
||||
namespace Plugins\Notebook\Enums; |
||||
|
||||
use App\Enums\EnumStatusTrait; |
||||
use Sc\Util\HtmlElement\ElementType\AbstractHtmlElement; |
||||
|
||||
/** |
||||
* 笔记协作人员 : 状态 |
||||
*/ |
||||
enum NotebookUserEnumStatus :int |
||||
{ |
||||
use EnumStatusTrait; |
||||
|
||||
/** |
||||
* 正常 |
||||
*/ |
||||
case Normal = 1; |
||||
|
||||
/** |
||||
* 剔除 |
||||
*/ |
||||
case Eliminate = 2; |
||||
|
||||
/** |
||||
* 获取描述 |
||||
* |
||||
* @return string |
||||
*/ |
||||
public function getDes(): string |
||||
{ |
||||
return match ($this) { |
||||
self::Normal => '正常', |
||||
self::Eliminate => '剔除', |
||||
}; |
||||
} |
||||
|
||||
/** |
||||
* 转标签 |
||||
*/ |
||||
public function toTag():AbstractHtmlElement |
||||
{ |
||||
return match ($this){ |
||||
self::Normal => $this->getTag('success', 'light'), |
||||
self::Eliminate => $this->getTag('warning', 'light'), |
||||
}; |
||||
} |
||||
} |
@ -0,0 +1,54 @@
|
||||
<?php |
||||
|
||||
namespace Plugins\Notebook\Model; |
||||
|
||||
use App\Model\Attribute\CreateSql; |
||||
use App\Model\Model; |
||||
|
||||
/** |
||||
* 笔记协作人员 |
||||
* @property int $id ID |
||||
* @property int $notebook_id 笔记 |
||||
* @property int $administrators_id 管理员 |
||||
* @property int $mode 权限 |
||||
* @property int $status 状态 |
||||
* @property string $create_time |
||||
* @property string $update_time |
||||
* @property int $delete_time |
||||
*/ |
||||
#[CreateSql(<<<SQL |
||||
CREATE TABLE `sd_notebook_user` ( |
||||
`id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', |
||||
`notebook_id` int NOT NULL DEFAULT '0' COMMENT '笔记', |
||||
`administrators_id` int NOT NULL DEFAULT '0' COMMENT '管理员', |
||||
`mode` tinyint(1) NOT NULL DEFAULT '1' COMMENT '权限:1=只读,2=读写', |
||||
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态:1=正常,2=剔除', |
||||
`create_time` datetime NOT NULL, |
||||
`update_time` datetime NOT NULL, |
||||
`delete_time` int DEFAULT NULL, |
||||
PRIMARY KEY (`id`) |
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='笔记协作人员' |
||||
SQL)] |
||||
class NotebookUser extends Model |
||||
{ |
||||
protected ?string $table = 'notebook_user'; |
||||
|
||||
protected array $casts = [ |
||||
...self::DEFAULT_CASTS, |
||||
|
||||
// 更多casts |
||||
]; |
||||
|
||||
protected array $fillable = ["notebook_id", "administrators_id", "mode", "status"]; |
||||
|
||||
public function setNotebookIdAttribute($value): int |
||||
{ |
||||
return $this->attributes['notebook_id'] = (int)$value; |
||||
} |
||||
|
||||
public function setAdministratorsIdAttribute($value): int |
||||
{ |
||||
return $this->attributes['administrators_id'] = (int)$value; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue