liaoxujun@qq.com
2024-04-10 25bad9a765c608079258012766a37a571b5243aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
{
    /// <summary>
    /// 推广合作博主信息
    /// </summary>
  
    public partial class bloggersInfo
    {
        /// <summary>
        /// 合作记录
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(intention.bloggerID))]
        public List<intention> intentions { get; set; }
        /// <summary>
        /// 洽谈记录
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(meeting.bloggerID))]
        public List<meeting> meetings { get; set; }
 
        /// <summary>
        /// 沟通记录
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(session.bloggerID))]
        public List<session> sessions { get; set; }
        /// <summary>
        /// 沟通记录
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public int?  sessionsCount { get; set; }=0;
        /// <summary>
        /// 洽谈记录总数
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public int? meetingsCount { get; set; } = 0;
 
        /// <summary>
        /// 合作记录
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public int? intentionsCount { get; set; } = 0;
        /// <summary>
        /// 沟通记录
        /// </summary>
        [SugarColumn(IsIgnore =true)]
        public string areaCodeName { get; set; }
    }
}