zhengyiming
2025-04-09 a4b53ae88b588b099cf0e334f99d74d229f7fdc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using LifePayment.Domain.Shared;
using System;
using Volo.Abp;
using Volo.Abp.Domain.Entities.Auditing;
 
namespace LifePayment.Domain.LifePay;
 
public partial class LifePayIntroInfo : FullAuditedEntity<Guid>, IDataUserFilter
{
    public LifePayIntroInfo()
    {
    }
 
    /// <summary>
    /// 类型
    /// </summary>
    public IntroInfoTypeEnum Type { get; set; }
 
    /// <summary>
    /// 生活缴费类型
    /// </summary>
    public LifePayOrderTypeEnum LifePayType { get; set; }
 
    /// <summary>
    /// 摘要
    /// </summary>
    public string ContentSummary { get; set; }
 
    /// <summary>
    /// 文本内容
    /// </summary>
    public string Content { get; set; }
 
    /// <summary>
    /// 图片/视频路径
    /// </summary>
    public string Path { get; set; }
 
    /// <summary>
    /// 排序
    /// </summary>
    public int Sequence { get; set; }
}