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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/AutoControl/DB/DeviceMaterrial.cs

31 lines
649 B
C#

using FreeSql.DataAnnotations;
namespace Mesnac.Action.ChemicalWeighing.AutoControl.DB
{
public class DeviceMaterrial
{
[Column(IsPrimary = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public int DeviceId { get; set; }
/// <summary>
/// 对应物料的Id
/// </summary>
public int MaterrialId { get; set; }
/// <summary>
/// 1 干混机 2 糊化机
/// </summary>
public int Type { get; set; }
public int Code { get; set; }
}
}