40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("order_teacher")]
|
||
public class order_teacher
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="orderid" )]
|
||
public int orderid { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="teacher" )]
|
||
public string teacher { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="teachercard" )]
|
||
public string teachercard { get; set; } ="";
|
||
/// <summary>
|
||
/// 1:新媒体二,2:平台一2020年,3:平台一2021年
|
||
///</summary>
|
||
[SugarColumn(ColumnName="type" )]
|
||
public int? type { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int id { get; set; }
|
||
}
|
||
}
|