21 lines
418 B
C#
21 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("employee_soft_dict")]
|
|
public class EMPLOYEE_SOFT_DICT
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public int eid { get; set; }
|
|
public string appusername { get; set; }
|
|
public string resid { get; set; }
|
|
|
|
}
|
|
}
|