TG.WXCRM.V4/Model/Entity/WX_SZZYORDERREFUNDCONTRACT.cs

36 lines
1.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_SZZYORDERREFUNDCONTRACT")]
public class WX_SZZYORDERREFUNDCONTRACT
{
public WX_SZZYORDERREFUNDCONTRACT()
{
}
public WX_SZZYORDERREFUNDCONTRACT(decimal orderId, string cONTRACT, decimal rEFUNDPRICE, int? cONTRACTSTATUS, DateTime? cONTRACTTIME, string cONTRACTKEY, int channel)
{
ORDERID = orderId;
CONTRACT = cONTRACT;
REFUNDPRICE = rEFUNDPRICE;
CONTRACTSTATUS = cONTRACTSTATUS;
CONTRACTTIME = cONTRACTTIME;
CONTRACTKEY = cONTRACTKEY;
CHANNEL = channel;
CTIME = DateTime.Now;
}
[Key]
public decimal ORDERID { get; set; }
public string CONTRACT { get; set; }
public decimal REFUNDPRICE { get; set; }
public int? CONTRACTSTATUS { get; set; }
public DateTime? CONTRACTTIME { get; set; }
public string CONTRACTKEY { get; set; }
public int CHANNEL { get; set; }
public DateTime CTIME { get; set; }
}
}