30 lines
738 B
C#
30 lines
738 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.MAP
|
|
{
|
|
public class WX_SZZYORDER_PUSH
|
|
{
|
|
public decimal orderid { get; set; }
|
|
public decimal eid { get; set; }
|
|
public string userid { get; set; }
|
|
[NotMapped]
|
|
public string phone { get; set; }
|
|
[NotMapped]
|
|
public decimal? productid { get; set; }
|
|
|
|
public decimal price { get; set; }
|
|
[NotMapped]
|
|
public DateTime? startTime { get; set; }
|
|
[NotMapped]
|
|
public DateTime? endTime { get; set; }
|
|
|
|
public decimal? SzzyOrderId { get; set; }
|
|
|
|
public decimal? SaleDeptId { get; set; }
|
|
|
|
public string orderstatus { get; set; }
|
|
}
|
|
|
|
}
|