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.
29 lines
743 B
29 lines
743 B
1 year ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using ChangKeTec.Wms.Models.Enums;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TS_UNKNOW_CUSTPART
|
||
|
{
|
||
|
[Key]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public long UID { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string CustPartCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string ProjectId { get; set; }
|
||
|
|
||
|
public DateTime FoundTime { get; set; }
|
||
|
|
||
|
//public EnumDataState State { get; set; }
|
||
|
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|