using Chuanyin.Attribute;
|
using CoreCms.Net.Model.Entities.baseModel;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CoreCms.Net.Model.Entities.baifenbingfa.Promote.OffLineDistributor
|
{
|
/// <summary>
|
/// 线下经销商
|
/// </summary>
|
[Display(Name = "线下经销商采集")]
|
[SugarTable(TableDescription = "线下经销商采集")]
|
[SqlCodeFirst]
|
public partial class OfflineDistributor: BFBaseModel
|
{
|
/// <summary>
|
/// 主键ID,自增长
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 信息收集时间
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "信息收集时间")]
|
public DateTime CollectionTime { get; set; } = DateTime.Now;
|
|
/// <summary>
|
/// 区域信息
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "区域信息")]
|
public string Region { get; set; }
|
/// <summary>
|
/// 详细地址
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "详细地址")]
|
public string Adder { get; set; }
|
|
/// <summary>
|
/// 类别
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "类别")]
|
public string Category { get; set; }
|
|
/// <summary>
|
/// 学校名称(若适用)
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "学校名称")]
|
public string School { get; set; }
|
|
/// <summary>
|
/// 经销商名称
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "经销商名称")]
|
public string DealerName { get; set; }
|
|
/// <summary>
|
/// 联系人姓名
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "联系人姓名")]
|
public string ContactPerson { get; set; }
|
|
/// <summary>
|
/// 联系电话
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "联系电话")]
|
public string PhoneNumber { get; set; }
|
|
/// <summary>
|
/// 店招图片地址
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "店招图片地址",Length =65535)]
|
public string StoreLogoUrl { get; set; }
|
|
/// <summary>
|
/// 合作意向描述
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "合作意向描述")]
|
public string CooperationIntent { get; set; }
|
|
/// <summary>
|
/// 业务经理姓名
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "业务经理姓名")]
|
public string BusinessManager { get; set; }
|
|
/// <summary>
|
/// 洽谈记录
|
/// <summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "洽谈记录")]
|
public string NegotiationRecord { get; set; }
|
|
|
/// <summary>
|
/// 关联用户ID
|
/// <summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "关联用户ID")]
|
public int? UserID { get; set; }
|
|
/// <summary>
|
/// 收集人ID
|
/// <summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "收集人ID")]
|
public int? PUserID { get; set; }
|
/// <summary>
|
/// 备注
|
/// <summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "备注")]
|
public string Remake { get; set; }
|
/// <summary>
|
/// 是否合作
|
/// <summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "是否合作", DefaultValue = "0")]
|
public bool IsMeeting { get; set; } = false;
|
|
|
}
|
}
|