25 lines
552 B
C#
25 lines
552 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_DBRECIVE")]
|
|
public partial class WX_DBRECIVE
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string DATATYPE { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string FILEPATH { get; set; }
|
|
|
|
public decimal STATUS { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|