<기능개선>
1. PMS NO : {}
2. (주요)작업내용
(1) {(엑셀다운로드 기능 추가 한 페이지(결제내역/수강신청/계산서요청/수료처리(종합, 시험, 과제, 회사별학습통계))}
- {"엑셀다운로드 클릭시 이벤트 처리하였습니다.(사유 입력시에만 다운가능합니다.)
This commit is contained in:
parent
8a37b5269e
commit
78f6e6d554
|
|
@ -79,6 +79,26 @@ namespace NP.Model
|
|||
public String menunos { get; set; }
|
||||
public int isdel { get; set; }
|
||||
}
|
||||
/*엑셀 다운로드 기록*/
|
||||
public partial class Excellog
|
||||
{
|
||||
public int edno { get; set; }
|
||||
|
||||
public int userno { get; set; }
|
||||
|
||||
public string userid { get; set; }
|
||||
|
||||
public string username { get; set; }
|
||||
|
||||
public DateTime actiontime { get; set; }
|
||||
|
||||
public string position { get; set; }
|
||||
|
||||
public string comment { get; set; }
|
||||
|
||||
public string userip { get; set; }
|
||||
}
|
||||
/*엑셀을 다운로드 기록 끝*/
|
||||
|
||||
[Serializable]
|
||||
public class AuthGroup : BaseModel
|
||||
|
|
|
|||
|
|
@ -58,5 +58,7 @@ namespace NP.Model
|
|||
public Assign Assign { get; set; }
|
||||
public PPLog PPLog { get; set; }
|
||||
|
||||
public Excellog excellog { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue