NewGaoKaoApi/New_College.Model/Models/D_MyHistoryInfo.cs

25 lines
484 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
[SugarTable("D_MyHistoryInfo", "WMBLOG_MYSQL")]
public class D_MyHistoryInfo : EntityModel
{
public int CustomerId { get; set; }
/// <summary>
/// 记录Id
/// </summary>
public long UId { get; set; }
/// <summary>
///
/// </summary>
public int Type { get; set; }
}
}