Update BasePostageTemplate.php

This commit is contained in:
邹景立 2022-04-15 21:52:58 +08:00
parent 511df78a13
commit b5ef8f6f6f

View File

@ -11,5 +11,13 @@ use think\admin\Model;
*/
class BasePostageTemplate extends Model
{
/**
* 格式化创建时间
* @param string $value
* @return string
*/
public function getCreateAtAttr(string $value): string
{
return format_datetime($value);
}
}