19 lines
433 B
C#
19 lines
433 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class T_LongIdMap : EntityModel
|
|
{
|
|
[SugarColumn(IsNullable = true)]
|
|
public string longid { get; set; }
|
|
[SugarColumn(IsNullable = true)]
|
|
public int newid { get; set; }
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
public string tablename { get; set; }
|
|
}
|
|
}
|