using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Model.Models
{
[SugarTable("Dt_ArticleInfom", "套筒/信息表"), MultiTenant]
public class Dt_ArticleInfom:BaseEntity
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int ID { get; set; }
///
/// 套筒名
///
[SugarColumn(IsNullable = true, Length = 50,ColumnDescription ="套筒名")]
public string ArticleName { get; set; }
///
/// 规格型号
///
[SugarColumn(IsNullable = true, Length = 50)]
public string ArticleType { get; set; }
///
/// 单位(个)
///
[SugarColumn(IsNullable = true, Length = 50)]
public string ArticleUnit { get; set; }
///
/// 所属分类
///
[SugarColumn(IsNullable = true, Length = 50)]
public string Category { get; set; }
///
/// 备注
///
[SugarColumn(IsNullable = true, Length = 50)]
public string Articleremark { get; set; }
}
}