using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NP.Model
{
public class VMPay : VMBase
{
public int cmno { get; set; }
public int isgroup { get; set; }
public int ptype { get; set; }
public int isdvr { get; set; }
///
/// 0> ptype상품유형
/// 1> itemno상품키
/// 2> itemcount상품수량
/// 3> userno수강생
/// 4> isrebate환급여부
/// 5> fgno환급강좌계약서파일
/// 6> pcno(장바구니번호)
///
public String items { get; set; }
public Pay Pay { get; set; }
public PayRfd PayRfd { get; set; }
public PayItem PayItem { get; set; }
public IList Paies { get; set; }
public IList PayItems { get; set; }
public IList PayRfds { get; set; }
public IList PayItemResults { get; set; }
public PayDVR PayDVR { get; set; }
///
/// 결제PG구성정보
///
public String pginfo { get; set; }
public String pginfomobile { get; set; }
public String signkey { get; set; }
public Users User { get; set; }
//public String payitemname { get; set; }
public bool IsMobilePay { get; set; }
public Lect Lect { get; set; }
public bool ispaycert { get; set; }
public bool ispaycart { get; set; }
public bool ispayexam { get; set; }
public Int64 payno { get; set; }
public int absptype { get; set; }
public Int64 rfdno { get; set; }
///
/// 배송비
///
public int deliveramt { get; set; }
public int exno { get; set; }
public IList PayCarts { get; set; }
public int isexamready { get; set; }
public int userno { get; set; }
public Int64 pplno { get; set; }
public Int64 cmino { get; set; }
public Int64 cmisno { get; set; }
public PPLog PPLog { get; set; }
public int iscashrct { get; set; }
public String cashrcthp { get; set; }
public int isbill { get; set; }
public System.Collections.Hashtable payParams { get; set; }
public CM CM { get; set; }
///
/// 영수,청구구분 0:청구, 1:영수
///
public int isreceipt { get; set; }
///
/// 계산서날짜
///
public DateTime? taxdatereq { get; set; }
///
/// 선택한 교육일정 정보
/// 20220801
///
public CMinningscd SelectCMInningscd { get; set; }
}
}