//----------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 { /// /// 数据表实体类:rf_flowapisystem /// [Table("rf_flowapisystem")] [Serializable] public partial class rf_flowapisystem: BaseEntity { /// /// 系统名称 /// [Display(Name="系统名称")] [Column("Name")] [DataMember] public string Name {get;set;} /// /// 系统标识(不能重复) /// [Display(Name="系统标识(不能重复)")] [Column("SystemCode")] [DataMember] public string SystemCode {get;set;} /// /// 调用KEY /// [Display(Name="调用KEY")] [Column("SystemIP")] [DataMember] public string SystemIP {get;set;} /// /// 备注 /// [Display(Name="备注")] [Column("Note")] [DataMember] public string Note {get;set;} /// /// 排序 /// [Display(Name="排序")] [Column("Sort")] [DataMember] public int Sort {get;set;} public override string ToString() { return JSON.Serialize(this); } } /** /// /// 数据表实体类Map:rf_flowapisystem /// public class rf_flowapisystemMap : EntityTypeConfiguration { 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结束----------