feat: omit content from report list APIs

This commit is contained in:
kuaifan
2025-12-30 01:58:03 +00:00
parent 8759e6fd7e
commit a336fd4a1a
2 changed files with 14 additions and 2 deletions

View File

@@ -56,6 +56,15 @@ class Report extends AbstractModel
const WEEKLY = "weekly";
const DAILY = "daily";
public const LIST_FIELDS = [
'id',
'title',
'type',
'userid',
'sign',
'created_at',
'updated_at',
];
protected $fillable = [
"title",