34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Dncms
|
|
{
|
|
[Table("resource_protectinfo")]
|
|
public class ResourceProtectInfo
|
|
{
|
|
[Key]
|
|
public int? id { get; set; }
|
|
|
|
public int uid { get; set; }
|
|
public string? appid { get; set; }
|
|
public string? appuserid { get; set; }
|
|
public string? resid { get; set; }
|
|
public string? unionid { get; set; }
|
|
public int? customerid { get; set; }
|
|
public int? deptid { get; set; }
|
|
public string? deptname { get; set; }
|
|
public int? groupid { get; set; }
|
|
public DateTime? regtime { get; set; }
|
|
public int? ch { get; set; }
|
|
public DateTime? firstfollowtime { get; set; }
|
|
public DateTime? followtime { get; set; }
|
|
public DateTime? protecttime { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
public int? isdelete { get; set; } = 0;
|
|
public string? eventtype { get; set; }
|
|
}
|
|
} |