ComplianceServer/oldcode/Model/Entity/SOFT_REMOTECODE.cs

26 lines
590 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_REMOTECODE")]
public partial class SOFT_REMOTECODE
{
[Key]
public decimal PKID { get; set; }
public decimal? EID { get; set; }
[StringLength(50)]
public string REMOTECODE { get; set; }
[StringLength(300)]
public string REMARK { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
}
}