| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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.Production
- {
- /// <summary>
- /// 排产异常记录表
- /// </summary>
- [Comment("排产异常记录表")]
- public class ScheduleExceptionMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public long RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 工单
- /// </summary>
- [Comment("工单")]
- public string WorkOrd { get; set; }
- /// <summary>
- /// 异常原因
- /// </summary>
- [Comment("异常原因")]
- public string Remark { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("创建时间")]
- public DateTime CreatTime { get; set; }
- }
- }
|