using Admin.NET.Core; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FZCZTB.NET.MD { /// /// 投诉质疑结果 /// [SugarTable("FB_CaigourenGuanli")] [IncreTable] public partial class CaigourenGuanli : basemodelNoId { /// /// 采购人ID,主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 采购人名称 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "采购人名称")] public string Caigourenmingcheng { get; set; } /// /// 行政区域 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "行政区域")] public string Xingzhengquyu { get; set; } /// /// 行政区域名称 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "行政区域名称")] public string XingzhengquyuName { get; set; } /// /// 机构代码 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "机构代码")] public string Jigoudaima { get; set; } /// /// 代码类型 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "代码类型")] public string Daimaleixing { get; set; } /// /// 联系人 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "联系人")] public string Lianxiren { get; set; } /// /// 联系电话 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "联系电话")] public string Lianxidianhua { get; set; } /// /// 通信地址 /// [SugarColumn(Length = 250, IsNullable = true, ColumnDescription = "通信地址")] public string Tongxindizhi { get; set; } /// /// 电子邮件 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "电子邮件")] public string Dianziyoujian { get; set; } /// /// 项目经办人 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "项目经办人")] public string Xiangmujingbanren { get; set; } /// /// 职务 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "职务")] public string Zhiwu { get; set; } /// /// 经办人电话 /// [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "经办人电话")] public string Jingbanrendianhua { get; set; } /// /// 创建者CusExtendId /// public long? CusExtendId { get; set; } } }