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.

51 lines
1.2 KiB
C#

11 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Admin.Core.Model.ViewModels;
using SqlSugar;
namespace Admin.Core.Model
{
///<summary>
10 months ago
///反应釜
11 months ago
///</summary>
[SugarTable("Hw_Warehouse", "cwss_xl")]
public class Hw_Warehouse
{
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
10 months ago
/// Desc:反应釜名称
11 months ago
/// Default:
/// Nullable:True
/// </summary>
public string Name { get; set; }
/// <summary>
10 months ago
/// Desc:反应釜二维码
11 months ago
/// Default:
/// Nullable:True
/// </summary>
public string BarCode { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CreateTime { get; set; }
/// <summary>
/// Desc:更新时间
/// Default:
/// Nullable:True
/// </summary>
public string UpdateTime { get; set; }
}
}