| | |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable("Dt_ArticleInfom", "å¥çä¿¡æ¯è¡¨"), MultiTenant] |
| | | [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; } |
| | | |