ComplianceServer/oldcode/Core.Model/Entity/Soft_Userinfo_SubLog.cs

15 lines
352 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("soft_userinfo_sublog")]
public class Soft_Userinfo_SubLog
{
[Key]
public int id { get; set; }
public int type { get; set; }
public string data { get; set; }
}
}