using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
///
/// 请示数据库表
///
[SugarTable("Res_AskData")]
public class Res_AskData:EntityBase
{
///
/// 关联团组
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string DeleName { get; set; } = "";
///
/// 国家
///
[SugarColumn(IsNullable =true,ColumnDataType ="varchar(100)")]
public string Country { get; set; }
///
/// 地区
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
public string Area { get; set; }
///
/// 公务方名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string UnitName { get; set; }
///
/// 涉及领域
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string Field { get; set; }
///
/// 话术范例
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
public string TalkCase { get; set; }
}
}