| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Business.Core.Attributes;
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.Model.Tech
- {
- /// <summary>
- /// 发料到工序表
- /// </summary>
- [CollectionName("dopbase", "mes_tech_proc_icitem")]
- [Comment("发料到工序表")]
- public class mes_tech_proc_icitem : BaseEntity
- {
- ///// <summary>
- ///// 主键
- ///// </summary>
- ////[Key]
- ////[Comment("主键")]
- ////public long tech_proc_icitem_id { get; set; }
- /// <summary>
- /// 工艺工序id
- /// </summary>
- [Required]
- [Comment("工艺工序id")]
- public long? tech_proc_id { get; set; }
- /// <summary>
- /// 物料id
- /// </summary>
- [Required]
- [Comment("物料id")]
- public long? icitem_id { get; set; }
- /// <summary>
- /// 数量
- /// </summary>
- [Required]
- [Comment("数量")]
- public int? qty { get; set; }
- }
- }
|