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.
42 lines
1012 B
C#
42 lines
1012 B
C#
using System;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjMixManager
|
|
{
|
|
public class LjMixManagerView
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
public string MetageAId { get; set; }
|
|
public string MetageAName { get; set; }
|
|
|
|
public string MixAId { get; set; }
|
|
public string MixAName { get; set; }
|
|
|
|
public string MetageB1Id { get; set; }
|
|
|
|
public string MetageB1Name { get; set; }
|
|
|
|
public string MetageB2Id { get; set; }
|
|
|
|
public string MetageB2Name { get; set; }
|
|
|
|
public string MixBId { get; set; }
|
|
|
|
public string MixBName { get; set; }
|
|
|
|
public string MixCId { get; set; }
|
|
|
|
public string MixCName { get; set; }
|
|
|
|
public int RecipeType { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
public int DryId { get; set;}
|
|
public string DryName { get; set;}
|
|
}
|
|
} |