Admin
2025-12-02 9e42f0dafa019f5ecf6b0ff425ecb966b002171e
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA.Entity.SystemModels;
 
namespace WIDESEA.Entity.DomainModels
{
    [Entity(TableCnName = "接口记录表", TableName = "dt_Interfacerecord")]
    public class dt_Interfacerecord : BaseEntity
    {
        /// <summary>
        ///主键
        /// </summary>
        [Key]
        [Display(Name = "主键")]
        [Column(TypeName = "uniqueidentifier")]
        [Required(AllowEmptyStrings = false)]
        public Guid interface_id { get; set; }
 
        /// <summary>
        ///类型
        /// </summary>
        [Display(Name = "类型")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        [Required(AllowEmptyStrings = false)]
        public string interface_type { get; set; }
 
        /// <summary>
        ///提供方
        /// </summary>
        [Display(Name = "提供方")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        [Required(AllowEmptyStrings = false)]
        public string interface_provide { get; set; }
 
        /// <summary>
        ///调用方
        /// </summary>
        [Display(Name = "调用方")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        [Required(AllowEmptyStrings = false)]
        public string interface_call { get; set; }
 
        /// <summary>
        ///参数
        /// </summary>
        [Display(Name = "参数")]
        [Column(TypeName = "nvarchar(max)")]
        public string interface_paradata { get; set; }
 
        /// <summary>
        ///返回值
        /// </summary>
        [Display(Name = "返回值")]
        [Column(TypeName = "nvarchar(max)")]
        public string interface_returndata { get; set; }
 
        /// <summary>
        ///时间 
        /// </summary>
        [Display(Name = "时间 ")]
        [Column(TypeName = "datetime")]
        [Required(AllowEmptyStrings = false)]
        public DateTime interface_createtime { get; set; }
 
        /// <summary>
        ///备注
        /// </summary>
        [Display(Name = "备注")]
        [MaxLength(200)]
        [Column(TypeName = "nvarchar(200)")]
        public string interface_remark { get; set; }
    }
}