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

26 lines
695 B
C#

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
{
/// <summary>
/// 在线订单来源信息
/// </summary>
[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; }
}
}