/// <summary>
 /// 默认构造函数
 /// </summary>
 public SystemDictionaryEntity()
 {
     _systemDictionaryID         = 0;
     _systemDictionaryGroupID    = null;
     _systemDictionaryKey        = null;
     _systemDictionaryCode       = null;
     _systemDictionaryValue      = null;
     _systemDictionaryDesciption = null;
     _systemDictionaryOrder      = null;
     _systemDictionaryIsEnable   = null;
     _systemDictionaryIsSystem   = null;
     _createBy          = null;
     _createAt          = null;
     _lastModifyBy      = null;
     _lastModifyAt      = null;
     _lastModifyComment = null;
 }
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SystemDictionaryEntity(int systemDictionaryID, SystemDictionaryGroupEntity systemDictionaryGroupID, string systemDictionaryKey, string systemDictionaryCode, string systemDictionaryValue, string systemDictionaryDesciption, int?systemDictionaryOrder, bool?systemDictionaryIsEnable, bool?systemDictionaryIsSystem, int?createBy, DateTime?createAt, int?lastModifyBy, DateTime?lastModifyAt, string lastModifyComment)
 {
     _systemDictionaryID         = systemDictionaryID;
     _systemDictionaryGroupID    = systemDictionaryGroupID;
     _systemDictionaryKey        = systemDictionaryKey;
     _systemDictionaryCode       = systemDictionaryCode;
     _systemDictionaryValue      = systemDictionaryValue;
     _systemDictionaryDesciption = systemDictionaryDesciption;
     _systemDictionaryOrder      = systemDictionaryOrder;
     _systemDictionaryIsEnable   = systemDictionaryIsEnable;
     _systemDictionaryIsSystem   = systemDictionaryIsSystem;
     _createBy          = createBy;
     _createAt          = createAt;
     _lastModifyBy      = lastModifyBy;
     _lastModifyAt      = lastModifyAt;
     _lastModifyComment = lastModifyComment;
 }