ComplianceServer/code/Hg.Core.Entity/Dncmsbase/Risktips.cs

19 lines
400 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.Dncmsbase
{
[Table("Risktips")]
public class Risktips
{
[Key]
public int id { get; set; }
public string title { get; set; }
public string content { get; set; }
public string status { get; set; }
}
}