| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 库存主数据表
- /// </summary>
- [Comment("库存主数据表")]
- public class InvMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 库位
- /// </summary>
- [Comment("库位")]
- public string Location { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 库存数量
- /// </summary>
- [Comment("库存数量")]
- public decimal? QtyOnHand { get; set; }
- /// <summary>
- /// 非限制数量
- /// </summary>
- [Comment("非限制数量")]
- public decimal? AvailStatusQty { get; set; }
- /// <summary>
- /// 质检数量
- /// </summary>
- [Comment("质检数量")]
- public decimal? Assay { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- }
- }
|