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;}
    }
}