1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using ZhonTai.Common.Domain.Entities;
- namespace ZhonTai.Plate.Admin.Service.Tenant.Dto
- {
-
-
-
- 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 DataIsolationType DataIsolationType { 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; }
- }
- }
|