using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("StockAudit")] public partial class StockAudit { [Key] public int Id { get; set; } /// /// 报备ID(唯一编码) /// public string Audit_id { get; set; } /// /// 产品线Id /// public int? Product_line_id { get; set; } /// /// 产品线名称 /// public string Product_line_name { get; set; } /// /// 栏目ID /// public int? Column_id { get; set; } /// /// 栏目名称 /// public string Column_name { get; set; } /// /// 股票代码 /// public string Stock_code { get; set; } /// /// 股票名称 /// public string Stock_name { get; set; } /// /// 建议关注价格 /// public decimal? Focus_on_price_min { get; set; } /// /// 建议关注价格 /// public decimal? Focus_on_price_max { get; set; } /// /// 预警价格 /// public decimal? Warning_price_min { get; set; } /// /// 预警价格 /// public decimal? Warning_price_max { get; set; } /// /// 建议仓位 /// public decimal? Recommended_stock { get; set; } /// /// 建议理由 /// public string Recommended_reasons { get; set; } /// /// 来源类型 /// public string Source_type { get; set; } /// /// 来源 /// public string Source { get; set; } /// /// 操作人 /// public string Operator { get; set; } /// /// 报备时间 /// public DateTime? Create_time { get; set; } /// /// 报备类型 0 人工 1 AI /// public int? Audit_type { get; set; } /// /// 是否审核 0 未审核 1 审核通过 -1 驳回 /// public int? Audit { get; set; } /// /// 驳回原因 /// public string Rejected_reasons { get; set; } /// /// 审核人 /// public string Auditor { get; set; } } }