1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
-
- namespace Admin.Core.Service.Admin.Tenant.Input
- {
-
-
-
- public class TenantAddInput
- {
-
-
-
- public string Code { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string RealName { get; set; }
-
-
-
- public string Phone { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public FreeSql.DataType? DbType { get; set; }
-
-
-
- public string ConnectionString { get; set; }
-
-
-
- public int? IdleTime { get; set; }
-
-
-
- public bool Enabled { get; set; }
-
-
-
- public string Description { get; set; }
- }
- }
|