20 lines
502 B
C#
20 lines
502 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class WX_ComplianceConfirm
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long SzzyOrderId { get; set; }
|
|
|
|
public DateTime? ConfirmTime { get; set; }
|
|
|
|
public string OutOrderNo { get; set; }
|
|
public decimal? Price { get; set; }
|
|
public string Ip { get; set; }
|
|
}
|
|
}
|