24 lines
556 B
C#
24 lines
556 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_EXCELIMPORTLOG_ERR")]
|
|
public partial class BAS_EXCELIMPORTLOG_ERR
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? IMPORTID { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string TRADECODE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string ERRO { get; set; }
|
|
}
|
|
}
|