14 lines
345 B
C#
14 lines
345 B
C#
namespace WX.CRM.Model.EntitySync
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("WSKUSER.BASE_SEED")]
|
|
public partial class BASE_SEED
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public decimal PKID { get; set; }
|
|
}
|
|
}
|