1234567891011121314151617181920212223242526 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "connectionid" })]
- public sealed class u_outerconnection
- {
- public int? connectionid { get; set; }
- public string dbms { get; set; }
- public string connectionname { get; set; }
- public byte? connectiontype { get; set; }
- public string databasename { get; set; }
- public string servername { get; set; }
- public string logid { get; set; }
- public string logpass { get; set; }
- public string mdf_name { get; set; }
- public string ldf_name { get; set; }
- public DateTime? opdate { get; set; }
- }
- }
|