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
{
///
/// 推广合作博主信息
///
public partial class bloggersInfo
{
///
/// 合作记录
///
[Navigate(NavigateType.OneToMany, nameof(intention.bloggerID))]
public List intentions { get; set; }
///
/// 洽谈记录
///
[Navigate(NavigateType.OneToMany, nameof(meeting.bloggerID))]
public List meetings { get; set; }
///
/// 沟通记录
///
[Navigate(NavigateType.OneToMany, nameof(session.bloggerID))]
public List sessions { get; set; }
///
/// 沟通记录
///
[SugarColumn(IsIgnore = true)]
public int? sessionsCount { get; set; }=0;
///
/// 洽谈记录总数
///
[SugarColumn(IsIgnore = true)]
public int? meetingsCount { get; set; } = 0;
///
/// 合作记录
///
[SugarColumn(IsIgnore = true)]
public int? intentionsCount { get; set; } = 0;
///
/// 沟通记录
///
[SugarColumn(IsIgnore =true)]
public string areaCodeName { get; set; }
}
}