20 lines
566 B
C#
20 lines
566 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_SZZYORDER_REFUND")]
|
|
public class WX_SZZYORDER_REFUND
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal SZZYORDERID { get; set; }
|
|
public decimal REFUND { get; set; }
|
|
public DateTime REFUNDTIME { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string REMARK { get; set; }
|
|
public decimal FLAG { get; set; }
|
|
}
|
|
}
|