Files
number_zj/20220330_Vote/Ewide.RoadFlow/Entity/rf_flowapisystem.cs
2022-03-30 17:54:33 +08:00

87 lines
2.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//----------rf_flowapisystem开始----------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
//using System.Data.Entity.ModelConfiguration;
using System.Runtime.Serialization;
using Furion.JsonSerialization;
namespace RoadFlow.Model
{
/// <summary>
/// 数据表实体类rf_flowapisystem
/// </summary>
[Table("rf_flowapisystem")]
[Serializable]
public partial class rf_flowapisystem: BaseEntity {
/// <summary>
/// 系统名称
/// </summary>
[Display(Name="系统名称")]
[Column("Name")]
[DataMember]
public string Name {get;set;}
/// <summary>
/// 系统标识(不能重复)
/// </summary>
[Display(Name="系统标识(不能重复)")]
[Column("SystemCode")]
[DataMember]
public string SystemCode {get;set;}
/// <summary>
/// 调用KEY
/// </summary>
[Display(Name="调用KEY")]
[Column("SystemIP")]
[DataMember]
public string SystemIP {get;set;}
/// <summary>
/// 备注
/// </summary>
[Display(Name="备注")]
[Column("Note")]
[DataMember]
public string Note {get;set;}
/// <summary>
/// 排序
/// </summary>
[Display(Name="排序")]
[Column("Sort")]
[DataMember]
public int Sort {get;set;}
public override string ToString()
{
return JSON.Serialize(this);
}
}
/**
/// <summary>
/// 数据表实体类Maprf_flowapisystem
/// </summary>
public class rf_flowapisystemMap : EntityTypeConfiguration<rf_flowapisystem>
{
public rf_flowapisystemMap()
{
this.ToTable("rf_flowapisystem");
this.HasKey(t => t.Id);
this.Property(t => t.Name).HasColumnName("Name").IsRequired();
this.Property(t => t.SystemCode).HasColumnName("SystemCode").IsRequired();
this.Property(t => t.SystemIP).HasColumnName("SystemIP").IsRequired();
this.Property(t => t.Note).HasColumnName("Note");
this.Property(t => t.Sort).HasColumnName("Sort").IsRequired();
}
}
**/
}
//----------rf_flowapisystem结束----------