using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
///
///
[SugarTable("mon_fairprice")]
public class mon_fairprice
{
///
///
///
[SugarColumn(ColumnName="Id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int Id { get; set; }
///
///
///
[SugarColumn(ColumnName="ModuleId" )]
public string ModuleId { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="Price" )]
public decimal? Price { get; set; }
}
}