using System;

namespace Mesnac.Action.ChemicalWeighing.LjProdcutLine
{
    public class ProductLineView
    {
        //select Id, Name, CreateTime, DryId, DryName from lj_product_line;

        public int Id { get; set; }
        public string Name { get; set; }
        public DateTime CreateTime { get; set; }
        public string DryId { get; set; }
        public string DryName { get; set; }
    }
}