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