| using Magicodes.ExporterAndImporter.Core; | 
| using SqlSugar; | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core.DB.Models; | 
| using WIDESEA_Core.Tenants; | 
|   | 
| namespace WIDESEA_Model.Models | 
| { | 
|     [SugarTable("Sys_Test", "测试"), MultiTenant] | 
|     public class Sys_Test : BaseEntity | 
|     { | 
|         [ImporterHeader(Name = "Id")] | 
|         [ExporterHeader(DisplayName = "Id")] | 
|         [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "Id")] | 
|         public int Id { get; set; } | 
|   | 
|         [ImporterHeader(Name = "测试Content")] | 
|         [ExporterHeader(DisplayName = "测试Content")] | 
|         [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "测试Content")] | 
|         public string TestContent { get; set; } | 
|   | 
|         [ImporterHeader(Name = "测试Count")] | 
|         [ExporterHeader(DisplayName = "测试Count")] | 
|         [SugarColumn(IsNullable = false, ColumnDescription = "测试Count")] | 
|         public int TestCount { get; set; } | 
|     } | 
| } |