AliyunAccountDTO.cs 960 B

1234567891011121314151617181920212223242526272829303132
  1. 
  2. using dodohold.core;
  3. namespace molilian.core
  4. {
  5. public partial class AliyunAccountDTO
  6. {
  7. [Key]
  8. public int Id { get; set; }
  9. public string name { get; set; } = string.Empty;
  10. public string username { get; set; } = string.Empty;
  11. public string password { get; set; } = string.Empty;
  12. public string company { get; set; } = string.Empty;
  13. public string description { get; set; } = string.Empty;
  14. public string mobile { get; set; } = string.Empty;
  15. public string accessKeyId { get; set; } = string.Empty;
  16. public string accessKeySecret { get; set; } = string.Empty;
  17. public bool status { get; set; } = false;
  18. public DateTime create_time { get; set; } = DateTime.MinValue;
  19. public DateTime last_time { get; set; } = DateTime.MinValue;
  20. public decimal balance { get; set; } = 0;
  21. public string regions { get; set; } = string.Empty;
  22. }
  23. }