52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("WX_ORDEREXT")]
|
|
public partial class WX_ORDEREXT
|
|
{
|
|
[Key]
|
|
public decimal? ORDERID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string? NAME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string? SOFTUSERNAME { get; set; }
|
|
|
|
public decimal? ISPAYED { get; set; }
|
|
|
|
public decimal? PAYTYPE { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string? PAYNO { get; set; }
|
|
|
|
public decimal? OPENDAYS { get; set; }
|
|
|
|
public decimal? AUDITUSER { get; set; }
|
|
|
|
public DateTime? AUDITTIME { get; set; }
|
|
|
|
public string? APPUSERNAME { get; set; }
|
|
|
|
public decimal? PRODUCTID { get; set; }
|
|
|
|
public string? PRODUCTCODE { get; set; }
|
|
|
|
public string? BIGPRODUCTCODE { get; set; }
|
|
|
|
public string? CHANNEL { get; set; }
|
|
|
|
public decimal? BOOKNUM { get; set; }
|
|
|
|
public decimal? ORDERSTATUS { get; set; }
|
|
|
|
public decimal? ORDERSOURCE { get; set; }
|
|
|
|
public string? OPENUSER { get; set; }
|
|
}
|
|
} |