移动系统liao
2024-07-30 306ab8865840b2637590abb6e670e5614446f24d
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
using Chuanyin.Attribute;
using CoreCms.Net.Model.Entities.baseModel;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.Model.Entities.Distribution
{
    /// <summary>
    /// 经销商业绩绩效记录表
    /// </summary>
    //[SqlCodeFirst]
    public partial class DistributionAchievement:BFBaseModel
    {
        /// <summary>
        /// id
        /// </summary>        
        [SugarColumn(ColumnDescription = "id",IsPrimaryKey =true,IsIdentity =true)]
        public int id { get; set; }
        /// <summary>
        /// 起始时间
        /// </summary>        
        [SugarColumn(ColumnDescription = "起始时间")]
        public DateTime? startTime { get; set; }
 
        /// <summary>
        /// 结束时间
        /// </summary>        
        [SugarColumn(ColumnDescription = "起始时间")]
        public DateTime? endTime { get; set; }
 
        /// <summary>
        /// 绩效总额
        /// </summary>        
        [SugarColumn(ColumnDescription = "绩效总额")]
        public decimal achievementTotals { get; set; } = 0;
 
        /// <summary>
        /// 绩效奖励总和
        /// </summary>        
        [SugarColumn(ColumnDescription = "绩效奖励总和")]
        public decimal achievementBonus { get; set; } = 0;
 
        /// <summary>
        /// 用户ID
        /// </summary>        
        [SugarColumn(ColumnDescription = "用户ID")]
        public int userID { get; set; }
 
 
 
    }
}