22 lines
557 B
C#
22 lines
557 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("employee_phone_bind")]
|
|
public class EMPLOYEE_PHONE_BIND
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int eid { get; set; }
|
|
public string resid { get; set; }
|
|
public int is_main { get; set; }
|
|
public string? show_phone { get; set; }
|
|
public DateTime? last_empower_time { get; set; }
|
|
public string? appusername { get; set; }
|
|
}
|
|
}
|