| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Business.Domain
- {
- /// <summary>
- /// 采购申请单占用
- /// </summary>
- [CollectionName("dopbase", "srm_pr_main_occupy")]
- [Comment("采购申请单占用")]
- public class mo_srm_pr_main_occupy: MoBaseEntity
- {
- /// <summary>
- /// 工单ID
- /// </summary>
- [Comment("工单ID")]
- public long? morder_id { get; set; }
- /// <summary>
- /// 工单编号
- /// </summary>
- [Comment("工单编号")]
- public string morder_mo { get; set; }
- /// <summary>
- /// 占用量
- /// </summary>
- [Precision(23, 10)]
- [Comment("占用量")]
- public decimal? qty { get; set; }
- /// <summary>
- /// 占用状态
- /// </summary>
- [Comment("占用状态")]
- public int? state { get; set; }
- /// <summary>
- /// 计算ID
- /// </summary>
- [Comment("计算id")]
- [NotMapped]
- public long? bang_id { get; set; }
- }
- }
|