using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CRM.Core.Model.Entity { /// /// 在线订单来源信息 /// [Table("Wx_SzzyOrderStOrderInfo")] public class Wx_SzzyOrderStOrderInfo { [Key] public decimal orderid { get; set; } public int? channel { get; set; } public string source { get; set; } public string sceneType { get; set; } public DateTime? ctime { get; set; } public DateTime? utime { get; set; } } }