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

19 lines
436 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.Dncmsbase
{
[Table("NewsContent")]
public class NewsContent
{
[Key]
public int id { get; set; }//内容
public string? content { get; set; }//内容
public string? vscode { get; set; }
public string? marketingcontent { get; set; }
}
}