You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace SBF.Model.Db.Trusteeship
|
||
|
{
|
||
|
public class Sbf_AdjustLog
|
||
|
{
|
||
|
[Column(DbType = "bigint", IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 托管任务Id
|
||
|
/// </summary>
|
||
|
[Column(DbType = "bigint")]
|
||
|
public long TrusteeshipTaskId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 策略类型 成长期策略包 = 0, 冲击主力策略包 = 1, 稳定期策略包 = 2, 主力期策略包 = 3
|
||
|
/// </summary>
|
||
|
[Column(MapType = typeof(int?))]
|
||
|
public Enums.PolicyType? PolicyType { get; set; } = Enums.PolicyType.成长期策略包;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 调整类型(出价=0,预算=1)
|
||
|
/// </summary>
|
||
|
[Column(MapType = typeof(int?))]
|
||
|
public Enums.AdjustType AdjustType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 调整方式(调高 = 0, 降低 = 1, 指定值 = 2)
|
||
|
/// </summary>
|
||
|
[Column(MapType = typeof(int?))]
|
||
|
public Enums.AdjustWay AdjustWay { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 操作内容
|
||
|
/// </summary>
|
||
|
public string OperateContent { get; set; }
|
||
|
}
|
||
|
}
|