| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using Business.Model;
- 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.Model.MES.IC
- {
- /// <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>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public int? IsActive { get; set; }
- }
- }
|