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
544 B
C#

using FreeSql.DataAnnotations;
using System;
namespace Mesnac.Action.ChemicalWeighing
{
public class Hw_BinAlarm
{
[Column(IsIdentity = true,IsPrimary =true)]
public int Id { get; set; }
public int BinId { get; set; }
public string BinName { get; set; }
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
public decimal Weights { get; set; }
public string TypeName { get; set; }
public DateTime CreateTime { get; set; }
}
}