| 1234567891011121314151617181920212223242526272829303132 |
-
- using dodohold.core;
- namespace molilian.core
- {
- public partial class AliyunAccountDTO
- {
- [Key]
- public int Id { get; set; }
- public string name { get; set; } = string.Empty;
- public string username { get; set; } = string.Empty;
- public string password { get; set; } = string.Empty;
- public string company { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string mobile { get; set; } = string.Empty;
- public string accessKeyId { get; set; } = string.Empty;
- public string accessKeySecret { get; set; } = string.Empty;
- public bool status { get; set; } = false;
- public DateTime create_time { get; set; } = DateTime.MinValue;
- public DateTime last_time { get; set; } = DateTime.MinValue;
- public decimal balance { get; set; } = 0;
- public string regions { get; set; } = string.Empty;
- }
- }
|