ComplianceServer/code/Hg.Core.Entity/OutComplaintOrder.cs

23 lines
454 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("t_out_complaint_order")]
public class OutComplaintOrder
{
[Key]
public int Id { get; set; }
public int? Orderid { get; set; }
public decimal? Price { get; set; }
[Column("complaint_id")]
public string? ComplaintId { get; set; }
}
}