24 lines
538 B
C#
24 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("WX_ComplianceConfirm")]
|
|
public class WxComplianceConfirm
|
|
{
|
|
[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; }
|
|
}
|
|
}
|