19 lines
400 B
C#
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; }
|
|
}
|
|
}
|