SqlSugar/Src/Asp.Net/SqlServerTest/UserTestCases/Models/AttributeTable.cs
2023-11-06 08:07:42 +08:00

21 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Linq.Mapping;
using System.Linq;
using System.Text;
namespace OrmTest
{
[Table(Name = "MyAttributeTable")]
//[SugarTable("CustomAttributeTable")]
public class AttributeTable
{
[Key]
//[SugarColumn(IsPrimaryKey =true)]
public string Id { get; set; }
public string Name { get; set; }
}
}