JdPoolDTO.cs 610 B

1234567891011121314151617
  1. namespace molilian.core
  2. {
  3. public class JdPoolDTO
  4. {
  5. public int id { get; set; }
  6. public string name { get; set; } = string.Empty;
  7. public string unionid { get; set; } = string.Empty;
  8. public string description { get; set; } = string.Empty;
  9. public string site_id { get; set; } = string.Empty;
  10. public string app_key { get; set; } = string.Empty;
  11. public string app_secret { get; set; } = string.Empty;
  12. public DateTime create_time { get; set; }
  13. public DateTime last_time { get; set; }
  14. public bool status { get; set; }
  15. }
  16. }