22 lines
627 B
C#
22 lines
627 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Soft_User_GetCheck")]
|
|
public class Soft_User_GetCheck
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string resid { get; set; }
|
|
public string softusername { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public int status { get; set; }
|
|
public string content { get; set; }
|
|
public string deptcode { get; set; }
|
|
public int eid { get; set; }
|
|
public string source { get; set; }
|
|
}
|
|
}
|