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; } } }