using System.Web.Mvc; using System.Collections.Generic; namespace SEIeSCM.Models.Dto { public class CommonDto { public string CD_CORP { set; get; } public string CD_BUSIDIV { set; get; } public string NM_BUSIDIV { set; get; } public string DT_COMP { set; get; } public string CD_EMP { set; get; } public string NM_EMP { set; get; } public string CD_DEPT { set; get; } public string NM_DEPT { set; get; } public string CD_TYPE { set; get; } public string CD_TYPEDTL { set; get; } public string NM_TYPEDTL { set; get; } public string TX_EXTRA1 { set; get; } public string TX_EXTRA2 { set; get; } public string TX_EXTRA3 { set; get; } public string TX_GRIDDATA { set; get; } public SelectList BusiDibComb { set; get; } //사업장콤보리스트 public SelectList ComnCodeComb { set; get; } //공통코드콤보리스트 //메뉴관련 public string CD_FORM { set; get; } } }