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; }
|
|
/// <summary>
|
/// 套筒名
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50,ColumnDescription ="套筒名")]
|
public string ArticleName { get; set; }
|
|
/// <summary>
|
/// 规格型号
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string ArticleType { get; set; }
|
|
|
/// <summary>
|
/// 单位(个)
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string ArticleUnit { get; set; }
|
|
|
/// <summary>
|
/// 所属分类
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string Category { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50)]
|
public string Articleremark { get; set; }
|
|
|
|
}
|
|
}
|