NewGaoKaoApi/New_College.Model/Models/FeedbackInfo.cs

22 lines
391 B
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace New_College.Model.Models
{
///<summary>
///
///</summary>
[SugarTable("FeedbackInfo", "WMBLOG_MYSQL")]
public class FeedbackInfo:EntityModel
{
public int? CustomerId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
}
}