You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.6 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_if_config")]
[Serializable]
public class SysIfConfig : BaseEntity
{
[Column("if_code")]
[DisplayName(" ")]
public string IfCode { get; set; }
[Column("if_desc")]
[DisplayName(" ")]
public string IfDesc { get; set; }
[Column("if_type")]
[DisplayName(" ")]
public int IfType { get; set; }
[Column("if_url")]
[DisplayName(" ")]
public string IfUrl { get; set; }
[Column("if_user")]
[DisplayName(" ")]
public string IfUser { get; set; }
[Column("if_pwd")]
[DisplayName(" ")]
public string IfPwd { get; set; }
[Column("service_name")]
[DisplayName(" ")]
public string ServiceName { get; set; }
[Column("param_name")]
[DisplayName(" ")]
public string ParamName { get; set; }
[Column("method_name")]
[DisplayName(" ")]
public string MethodName { get; set; }
[Column("condition")]
[DisplayName(" ")]
public string Condition { get; set; }
[Column("sender")]
[DisplayName(" ")]
public string Sender { get; set; }
[Column("receiver")]
[DisplayName(" ")]
public string Receiver { get; set; }
[Column("rec_if_code")]
[DisplayName(" ")]
public string RecIfCode { get; set; }
}
}