sunpengfei
2025-12-01 6396dac27ca99e84a2e3c772fb079bceddf67ff8
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
44
45
46
47
48
49
50
51
using Furion.DatabaseAccessor;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ApiTools.Core.Entities.LogRecords
{
    /// <summary>
    /// 微信订阅消息日志
    /// </summary>
    public class WxmpSubscribMessageLog : CommonEntity<MasterDbContextLocator>, IDbAuditLogIgnore
    {
        /// <summary>
        /// 小程序代码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 用户开放Id
        /// </summary>
        public string OpenId { get; set; }
 
        /// <summary>
        /// 场景
        /// </summary>
        public string PopupScene { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        public string SubscribeStatusString { get; set; }
 
        /// <summary>
        /// 模板Id
        /// </summary>
        public string TemplateId { get; set; }
 
        /// <summary>
        /// 点击模板卡片后的跳转页面,仅限本小程序内的页面。支持带参数,(示例index?foo=bar)。该字段不填则模板无跳转
        /// </summary>
        public string Page { get; set; }
 
        /// <summary>
        /// 模板内容,格式形如{ "phrase3": { "value": "审核通过" }, "name1": { "value": "订阅" }, "date2": { "value": "2019-12-25 09:42" } }
        /// </summary>
        public string Data { get; set; }
    }
}