ComplianceServer/oldcode/Core.Model/Entity/Order_Teacher.cs

17 lines
430 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("Order_Teacher")]
public class Order_Teacher
{
[Key]
public int id { get; set; }
public int orderid { get; set; }
public string teacher { get; set; }
public string teachercard { get; set; }
public int type { get; set; }
}
}