u_outerconnection.cs 771 B

1234567891011121314151617181920212223242526
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "connectionid" })]
  10. public sealed class u_outerconnection
  11. {
  12. public int? connectionid { get; set; }
  13. public string dbms { get; set; }
  14. public string connectionname { get; set; }
  15. public byte? connectiontype { get; set; }
  16. public string databasename { get; set; }
  17. public string servername { get; set; }
  18. public string logid { get; set; }
  19. public string logpass { get; set; }
  20. public string mdf_name { get; set; }
  21. public string ldf_name { get; set; }
  22. public DateTime? opdate { get; set; }
  23. }
  24. }