You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
852 B
35 lines
852 B
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using ChangKeTec.Wms.Models.Enums;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TM_CQBMPT_PAINT_FAILEDREASON
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public int UID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
[DisplayName("不合格原因")]
|
|
|
|
public string FailedReason { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DisplayName("工序")]
|
|
public EnumCqbmptProcess Process { get; set; }
|
|
|
|
[DisplayName("状态")]
|
|
public int State { get; set; }
|
|
|
|
[StringLength(500)]
|
|
[DisplayName("备注")]
|
|
|
|
public string Remark { get; set; }
|
|
|
|
}
|
|
}
|