| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using Business.Core.Attributes;
- using Bussiness.MongoModel;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.MongoModel.Tech
- {
- /// <summary>
- /// 治具表(工装表)
- /// </summary>
- [CollectionName("dopbase", "mo_mes_tech_proc_accessory")]
- [Comment("治具表(工装表)")]
- public class mo_mes_tech_proc_accessory : MoBaseEntity
- {
- ///// <summary>
- ///// 治具主键
- ///// </summary>
- //[Key]
- //[Comment("治具主键")]
- //public long tech_proc_acc_id { get; set; }
- /// <summary>
- /// 工艺工序主键
- /// </summary>
- [Required]
- [Comment("工艺工序主键")]
- public long? tech_proc_id { get; set; }
- /// <summary>
- /// 工装id
- /// </summary>
- [Required]
- [Comment("工装id")]
- public long? equip_id { get; set; }
- /// <summary>
- /// 工装编号
- /// </summary>
- [Required]
- [StringLength(100)]
- [Comment("工装编号")]
- public string? equip_no { get; set; }
- /// <summary>
- /// 数量
- /// </summary>
- [Required]
- [Comment("数量")]
- public int? qty { get; set; }
- }
- }
|