17 lines
349 B
C#
17 lines
349 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WW_HHUSER")]
|
|
public class WW_HHUSER
|
|
{
|
|
[Key]
|
|
public string USERID { get; set; }
|
|
|
|
public string UNAME { get; set; }
|
|
|
|
public string EXINFO { get; set; }
|
|
}
|
|
}
|