- 在 AgentNodeProfileController 中添加对父代理能力授予的验证,确保子代理的权限在父代理范围内。 - 更新多个请求类,统一代理资料字段的验证逻辑,提升代码复用性。 - 引入 AgentProfileFieldRules 以简化代理资料更新请求的规则定义。 - 在 AgentProfile 模型中设置主键为 agent_node_id,确保与代理节点的关联性。 - 更新错误信息,增加对授信额度和占成比例的验证,确保数据一致性。
17 lines
412 B
PHP
17 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
final class AgentSettlementCycle
|
|
{
|
|
/** @var list<string> */
|
|
public const VALUES = ['daily', 'weekly', 'monthly'];
|
|
|
|
public static function normalize(mixed $value, string $default = 'weekly'): string
|
|
{
|
|
$normalized = is_string($value) ? strtolower(trim($value)) : '';
|
|
|
|
return in_array($normalized, self::VALUES, true) ? $normalized : $default;
|
|
}
|
|
}
|