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; }
|
}
|
}
|