19 lines
450 B
C#
19 lines
450 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SOFT_JUEJINACTIVITYCONFIG")]
|
|
public partial class SOFT_JUEJINACTIVITYCONFIG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal VERIFICODE { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string RESOURCETAG { get; set; }
|
|
}
|
|
}
|