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; } /// /// 托管任务Id /// [Column(DbType = "bigint")] public long TrusteeshipTaskId { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } /// /// 策略类型 成长期策略包 = 0, 冲击主力策略包 = 1, 稳定期策略包 = 2, 主力期策略包 = 3 /// [Column(MapType = typeof(int?))] public Enums.PolicyType? PolicyType { get; set; } = Enums.PolicyType.成长期策略包; /// /// 调整类型(出价=0,预算=1) /// [Column(MapType = typeof(int?))] public Enums.AdjustType AdjustType { get; set; } /// /// 调整方式(调高 = 0, 降低 = 1, 指定值 = 2) /// [Column(MapType = typeof(int?))] public Enums.AdjustWay AdjustWay { get; set; } /// /// 操作内容 /// public string OperateContent { get; set; } } }