You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
568 B
C#

using LinqToDB.Mapping;
namespace TradeUsedSale.Repositories.Models
{
public class HW_PostFee
{
[PrimaryKey, Identity]
public int Id { get; set; }
public int? GoodsId { get; set; }
public decimal? Fee1 { get; set; }
public decimal? Fee2 { get; set; }
public decimal? Fee3 { get; set; }
public decimal? Fee4 { get; set; }
public decimal? Fee5 { get; set; }
public decimal? Fee6 { get; set; }
public decimal? Fee7 { get; set; }
public decimal? Fee8 { get; set; }
}
}