This commit is contained in:
Putoo
2026-07-15 12:55:22 +08:00
parent 77fcf4ea47
commit c9c870004b
10 changed files with 39 additions and 27 deletions

View File

@@ -44,6 +44,11 @@ public class TradeController : ControllerBase
count = count < 1 ? 1 : count;
string userId = StateHelper.userId;
int areaId = StateHelper.areaId;
if (price > 100000000000)
{
return PoAction.Message("最大单价不能超过10万金!");
}
int lev = await _attrService.GetUserLev(userId);
if (lev < 60)
{