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/LjProdcutLine/ProductLineView.cs

15 lines
410 B
C#

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