username@email.com
2024-10-29 3f91a6737fc06b45461ce11eae5660cbbf766f7e
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
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 DistributionAchievementOrder: BFBaseModel
    {
        /// <summary>
        /// id
        /// </summary>        
        [SugarColumn(ColumnDescription = "id", IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }
 
        /// <summary>
        /// 用户ID
        /// </summary>        
        [SugarColumn(ColumnDescription = "用户ID")]
        public int userID { get; set; }
 
        /// <summary>
        /// 绩效总额
        /// </summary>        
        [SugarColumn(ColumnDescription = "绩效总额")]
        public decimal achievementTotal { get; set; } = 0;
        /// <summary>
        /// 订单ID
        /// </summary>        
        [SugarColumn(ColumnDescription = "订单ID")]
        public string orderId { get; set; } 
 
        /// <summary>
        /// 订单类型
        /// </summary>        
        [SugarColumn(ColumnDescription = "订单类型")]
        public int orderType { get; set; } 
    }
}