using LifePayment.Domain.Shared; using System; using Volo.Abp; using Volo.Abp.Domain.Entities.Auditing; namespace LifePayment.Domain.LifePay; public partial class LifePayIntroInfo : FullAuditedEntity, IDataUserFilter { public LifePayIntroInfo() { } /// /// 类型 /// public IntroInfoTypeEnum Type { get; set; } /// /// 生活缴费类型 /// public LifePayOrderTypeEnum LifePayType { get; set; } /// /// 摘要 /// public string ContentSummary { get; set; } /// /// 文本内容 /// public string Content { get; set; } /// /// 图片/视频路径 /// public string Path { get; set; } /// /// 排序 /// public int Sequence { get; set; } }