username@email.com
2024-04-02 7fdf7d7bd39cd0381c3969ad6302be0e693cad2d
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
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 class OfflineDistributorMeeting: BFBaseModel
    {
        /// <summary>
        /// id
        /// </summary>
        [SugarColumn(ColumnDescription = "id", IsIdentity = true, IsPrimaryKey = true)]
        public int id { get; set; }
        /// <summary>
        /// 洽谈时间
        /// </summary>
        [Display(Name = "洽谈时间")]
        [SugarColumn(ColumnDescription = "洽谈时间")]
        public DateTime time { get; set; }
 
        /// <summary>
        /// 恰谈情况
        /// </summary>
        [Display(Name = "恰谈情况")]
        [SugarColumn(ColumnDescription = "恰谈情况")]
        public string Dec { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [Display(Name = "备注")]
        [SugarColumn(ColumnDescription = "备注",IsNullable =true)]
        public string Remake { get; set; }
 
        /// <summary>
        /// 经销商表ID
        /// </summary>
        [Display(Name = "经销商表ID")]
        [SugarColumn(ColumnDescription = "经销商表ID")]
        public int OfflineDistributorID { get; set; }
    }
}