Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling/FoodLabeling.Th.Application.Contracts/Dtos/Auth/ThAppLoginInputVo.cs 631 Bytes
a1a0369d   李曜臣   5-25代码优化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  using System.ComponentModel.DataAnnotations;
  
  namespace FoodLabeling.Th.Application.Contracts.Dtos.Auth;
  
  /// <summary>
  /// 泰额版 App 登录(须指定租户,用户数据在租户独立库)
  /// </summary>
  public class ThAppLoginInputVo
  {
      /// <summary>租户 Id(平台主库 yitenant.Id</summary>
      [Required]
      public Guid TenantId { get; set; }
  
      /// <summary>登录邮箱</summary>
      [Required]
      public string Email { get; set; } = string.Empty;
  
      [Required]
      public string Password { get; set; } = string.Empty;
  
      public string? Uuid { get; set; }
  
      public string? Code { get; set; }
  }