Platform upgrade: login auth fix, OCR/OSS upload, system menus and dicts, weather dashboard, weighing and invoice modules

This commit is contained in:
2026-08-14 01:12:33 +08:00
parent c377421a3e
commit 8099ebae0a
75 changed files with 5611 additions and 473 deletions
@@ -7,7 +7,7 @@ public record LoginResult(string Token, UserInfoDto User);
public record UserInfoDto(
int Id, string Username, string RealName, string Phone, string Role,
int? OrgId, string? OrgName, string? OrgType, bool IsActive);
int? RoleId, string? RoleName, int? OrgId, string? OrgName, string? OrgType, bool IsActive);
public record ChangePasswordRequest(string OldPassword, string NewPassword);