32 lines
662 B
C#
32 lines
662 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class QuestionNaire : EntityModel
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
public int CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学校名称
|
|
/// </summary>
|
|
[SugarColumn(Length = int.MaxValue)]
|
|
public string infoList { get; set; }
|
|
}
|
|
}
|