12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// CF_DataCenterCodeTranslate
- /// </summary>
- public partial class CF_DataCenterCodeTranslate
- {
- /// <summary>
- /// CodeType
- /// </summary>
- public string CodeType { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// DictionaryCode
- /// </summary>
- public string DictionaryCode { get; set; }
- /// <summary>
- /// Value
- /// </summary>
- public Nullable<int> Value { get; set; }
-
- /// <summary>
- /// Sys_Dictionary
- /// </summary>
- public virtual Sys_Dictionary Sys_Dictionary { get; set; }
- }
- }
|