23 lines
452 B
C#
23 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("t_in_complaint_order")]
|
|
public class InComplaintOrder
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int? Orderid { get; set; }
|
|
|
|
public decimal? Price { get; set; }
|
|
|
|
[Column("complaint_id")]
|
|
public string? ComplaintId { get; set; }
|
|
}
|
|
}
|