1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Common
- {
- public class BasDictionaryResult
- {
- public int DICTIONARY_ID { get; set; }
- public string NEWID { get; set; }
- public string DICTIONARY_CODE { get; set; }
- public string DICTIONARY_NAME { get; set; }
- public string DICTIONARY_ITEM_CODE { get; set; }
- public string DICTIONARY_ITEM_NAME { get; set; }
- public int USED_FLAG { get; set; }
- public string USED_FLAG_NAME { get; set; }
- public int DEL_FLAG { get; set; }
- public string DEL_FLAG_NAME { get; set; }
- public int CREATE_BY { get; set; }
- public string CREATE_NAME { get; set; }
- public int UPDATE_BY { get; set; }
- public string UPDATE_NAME { get; set; }
- public string REMARKS1 { get; set; }
- public string REMARKS2 { get; set; }
- public string REMARKS3 { get; set; }
- public string REMARKS4 { get; set; }
- public string REMARKS5 { get; set; }
- }
- }
|