|
...
|
...
|
@@ -25,15 +25,13 @@ class AsideTicketUpdateRequest extends FormRequest |
|
|
|
{
|
|
|
|
return [
|
|
|
|
'title' => 'nullable|string',
|
|
|
|
'subtitle' => 'nullable|string',
|
|
|
|
'content' => 'nullable|string',
|
|
|
|
'files' => 'nullable|array',
|
|
|
|
'status' => 'nullable|in:0,1,2,3|integer',
|
|
|
|
'engineer_ids' => 'nullable|array',
|
|
|
|
'star' => 'nullable|in:1,2,3|integer',
|
|
|
|
'plan_end_at' => 'nullable|date',
|
|
|
|
'reply' => 'nullable|string', // 弃用
|
|
|
|
'wechat_switch' => 'nullable|in:0,1|integer', // 微信通知开关
|
|
|
|
'reply' => 'nullable|string', // 弃用
|
|
|
|
];
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|