using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///
///
[SugarTable("Hw_Pump", "cwss_xl")]
public class Hw_Pump
{
public Hw_Pump()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? RowNum { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Name { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string BarCode { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateTime { get; set; }
}
}