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.
33 lines
688 B
C#
33 lines
688 B
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[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;
|
|
}
|
|
}
|