using System.ComponentModel; using XF.Domain.Repository; namespace Hotline.Snapshot; [Description("行业修改日志")] public class IndustryLog : FullStateEntity { /// /// OrderId /// public string OrderId { get; set; } /// /// 行业名称 /// public string OldIndustryName { get; set; } /// /// 行业名称 /// public string IndustryName { get; set; } /// /// 编号 /// public string No { get; set; } /// /// 标题 /// public string Title { get; set; } }