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
34 lines
892 B
7 months ago
|
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; }
|
||
|
}
|
||
|
}
|