SACenter/SA.Entity/zxdcrm_audit_Models/OrderTeacher.cs

40 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}