using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.FreeDb.DBEntity { [Table(Name = "WaterDownload")] public class WaterDownloadEntity { /// /// 主键 /// [Column(IsPrimary = true, IsIdentity = false)] public int Id { get; set; } public int Bin { get; set; } = 0; public float Set { get; set; } = 0; public float Tolerance { get; set; } = 0; public float differ { get; set; } = 0; public int stand { get; set; } = 0; } }