21 lines
622 B
C#
21 lines
622 B
C#
using System;
|
|
|
|
namespace WX.CRM.DataSynFactory.Templates
|
|
{
|
|
public class Client_HandGift
|
|
{
|
|
public decimal orderid { get; set; }
|
|
public decimal mainorderid { get; set; }
|
|
public int orderstatus { get; set; }
|
|
public string openuser { get; set; }
|
|
public DateTime? optime { get; set; }
|
|
public DateTime? otime { get; set; }
|
|
public decimal? szzyorderid { get; set; }
|
|
public string checkmemo { get; set; }
|
|
public DateTime? closetime { get; set; }
|
|
public string closeuser { get; set; }
|
|
public string closememo { get; set; }
|
|
|
|
}
|
|
}
|