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.
 
 
 
 
 

34 lines
892 B

using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using CK.SCP.Models.Base;
using CK.SCP.Models.Enums;
namespace CK.SCP.Models.ExchangeCenterTables
{
[Description("ASN作废表")]
public class TED_SCRAPASN
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
[Description("任务编号")]
public Guid TaskID { get; set; }
[DisplayName("ASN单号")]
public string BillNum { get; set; }
[DisplayName("报废时间")]
public DateTime Otime { get; set; }
[DisplayName("操作员")]
public string OperName { get; set; }
[DisplayName("报废原因")]
public string Reason { get; set; }
[DisplayName("备注")]
public string Remark { get; set; }
}
}