19 lines
435 B
C#
19 lines
435 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.EXP_RESIMPORTID")]
|
|
public partial class EXP_RESIMPORTID
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal IMPORTID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string IMPORTDATA { get; set; }
|
|
}
|
|
}
|