12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.PersonnelModule
- {
-
-
-
- [SugarTable(tableName: "Pm_GoodsReceive", tableDescription: "物品领用表")]
- public class Pm_GoodsReceive: EntityBase
- {
-
-
-
-
- [SugarColumn(ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")]
- public int GroupId { get; set; }
-
-
-
-
- [SugarColumn(ColumnDescription = "物资入库批次信息", IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? GoodsStorageInfo { get; set; }
-
-
-
-
- [SugarColumn(ColumnDescription = "商品Id", IsNullable = true, ColumnDataType = "int")]
- public int GoodsId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "领用数量", IsNullable = true, ColumnDataType = "decimal(8,2)")]
- public decimal Quantity { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "领用原因", IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? Reason { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "审核状态", IsNullable = true, ColumnDataType = "int")]
- public GoodsAuditEnum AuditStatus { get; set; } = GoodsAuditEnum.Pending;
-
-
-
-
- [SugarColumn(ColumnDescription = "审核人Id", IsNullable = true, ColumnDataType = "int")]
- public int AuditUserId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "审核时间", IsNullable = true, ColumnDataType = "datetime")]
- public DateTime AuditTime { get; set; }
- }
- }
|