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