123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- [Serializable]
- public class Mem_DataDictory
- {
- private int _id;
- private string _key;
- private string _text;
- private string _value;
- private string _remark;
- private int _parentid;
- private int _sortkey;
- private bool _ishide;
- private string _syncstatus;
- public Mem_DataDictory()
- {
- }
- public int Id
- {
- get { return _id; }
- set { _id = value; }
- }
- public string Key
- {
- get { return _key; }
- set { _key = value; }
- }
- public string Text
- {
- get { return _text; }
- set { _text = value; }
- }
- public string Value
- {
- get { return _value; }
- set { _value = value; }
- }
- public string Remark
- {
- get { return _remark; }
- set { _remark = value; }
- }
- public int ParentId
- {
- get { return _parentid; }
- set { _parentid = value; }
- }
- public int SortKey
- {
- get { return _sortkey; }
- set { _sortkey = value; }
- }
- public bool IsHide
- {
- get { return _ishide; }
- set { _ishide = value; }
- }
- public string SyncStatus
- {
- get { return _syncstatus; }
- set { _syncstatus = value; }
- }
- }
- }
|