123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_BatchModify
- {
- public Sys_BatchModify()
- {
- this.Sys_BatchModifyExpand = new HashSet<Sys_BatchModifyExpand>();
- }
-
-
-
-
- public System.Guid BatchModifyID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Value { get; set; }
-
-
-
- public string ControlType { get; set; }
-
-
-
- public string ControlTextFiled { get; set; }
-
-
-
- public string ControlValueFiled { get; set; }
-
-
-
- public string PostUrl { get; set; }
-
-
-
- public string DictionaryCode { get; set; }
-
-
-
- public string ReturnUrl { get; set; }
-
-
-
- public string listControl { get; set; }
-
-
-
- public string MUNClass { get; set; }
-
-
-
- public string MNUID { get; set; }
-
-
-
- public Nullable<int> OrderNo { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual HashSet<Sys_BatchModifyExpand> Sys_BatchModifyExpand { get; set; }
-
-
-
- public virtual Sys_Dictionary Sys_Dictionary { get; set; }
- }
- }
|