21 lines
466 B
C#
21 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("WW_HHUSER")]
|
|
public class WW_HHUSER
|
|
{
|
|
[Key]
|
|
public string? USERID { get; set; }
|
|
public string? UNAME { get; set; }
|
|
public string? EXINFO { get; set; }
|
|
public string? CORPID { get; set; }
|
|
|
|
public WW_HHUSER_EID? WW_HHUSER_EID { get; set; }
|
|
}
|
|
}
|