23 lines
572 B
C#
23 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("Authors")]
|
|
public class Authors
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public string? name { get; set; }//姓名
|
|
public string? title { get; set; }
|
|
public string? img { get; set; }
|
|
public int? status { get; set; }
|
|
public int? type { get; set; }
|
|
public string? members { get; set; }
|
|
public int risktipsid { get; set; }
|
|
}
|
|
} |