2020-10-12 14:39:23 +09:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NP.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
public class VMCRoom : VMBase
|
|
|
|
|
|
{
|
2025-04-10 13:34:27 +09:00
|
|
|
|
#region Request
|
|
|
|
|
|
|
|
|
|
|
|
public long cmino { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
public int ctno { get; set; }
|
|
|
|
|
|
public int cpno { get; set; }
|
2025-04-10 13:34:27 +09:00
|
|
|
|
public long lectno { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
public int pseq { get; set; }
|
|
|
|
|
|
public int ismobile { get; set; }
|
|
|
|
|
|
public int istaste { get; set; }
|
|
|
|
|
|
public int status { get; set; }
|
2025-04-10 13:34:27 +09:00
|
|
|
|
public int todayLectinningCount { get; set; }
|
|
|
|
|
|
public int daylectinninglimit { get; set; }
|
|
|
|
|
|
public int croomcmno { get; set; }
|
|
|
|
|
|
public int croomusertype { get; set; }
|
|
|
|
|
|
public string croomparam { get; set; }
|
|
|
|
|
|
public int croombmno { get; set; }
|
|
|
|
|
|
public int? opno { get; set; }
|
|
|
|
|
|
public string scc { get; set; }
|
|
|
|
|
|
public int estno { get; set; }
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region Data
|
|
|
|
|
|
|
2020-10-12 14:39:23 +09:00
|
|
|
|
public CMInning CMInning { get; set; }
|
|
|
|
|
|
public IList<LectInning> LectInnings { get; set; }
|
|
|
|
|
|
public LectInningPage lip { get; set; }
|
|
|
|
|
|
public IList<CTPage> Pages { get; set; }
|
|
|
|
|
|
public CTPage Page { get; set; }
|
|
|
|
|
|
public Int64 croomlectno { get; set; }
|
2025-04-10 13:34:27 +09:00
|
|
|
|
public Int64 BNo { get; set; }
|
|
|
|
|
|
public Int64? PBNo { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
public IList<Data> Datas { get; set; }
|
|
|
|
|
|
public CMEV CMEV { get; set; }
|
|
|
|
|
|
public Lect Lect { get; set; }
|
|
|
|
|
|
public IList<CMPR> CMPRs { get; set; }
|
|
|
|
|
|
public CM CM { get; set; }
|
|
|
|
|
|
public IList<CMRS> CMRSes { get; set; }
|
|
|
|
|
|
public BoardMaster BM { get; set; }
|
|
|
|
|
|
public IList<BoardMasterOpening> BMOs { get; set; }
|
|
|
|
|
|
public IList<Board> Boards { get; set; }
|
|
|
|
|
|
public Board Board { get; set; }
|
|
|
|
|
|
public IList<BoardCMT> BoardCMTs { get; set; }
|
|
|
|
|
|
public LectEX LectEX { get; set; }
|
|
|
|
|
|
public IList<LectEXQ> UserExamDatas { get; set; }
|
|
|
|
|
|
public IList<QuestionItem> QuestionItems { get; set; }
|
|
|
|
|
|
public IList<CMEXQ> EQs { get; set; }
|
|
|
|
|
|
public IList<CMEXQ> EQs2 { get; set; }
|
|
|
|
|
|
public LectSD LectSD { get; set; }
|
|
|
|
|
|
public IList<LectSDBoard> LectSDBoards { get; set; }
|
|
|
|
|
|
public LectSDBoard LectSDBoard { get; set; }
|
|
|
|
|
|
public IList<PayItem> PayItems { get; set; }
|
|
|
|
|
|
public IList<CG> CGs { get; set; }
|
|
|
|
|
|
public IList<PayTax> PayTaxes { get; set; }
|
|
|
|
|
|
public IList<PayTax> PayTaxes2 { get; set; }
|
|
|
|
|
|
public IList<PayItem> PayTaxItem { get; set; }
|
2020-11-26 13:35:01 +09:00
|
|
|
|
public IList<Lect> Lects { get; set; }
|
2021-06-23 18:11:34 +09:00
|
|
|
|
public IList<Completion> Completions { get; set; }
|
2021-08-23 15:10:15 +09:00
|
|
|
|
public Data ErrLi { get; set; }
|
2025-04-10 13:34:27 +09:00
|
|
|
|
public Excellog excellog { get; set; }
|
2022-04-28 14:05:09 +09:00
|
|
|
|
|
2025-04-10 13:34:27 +09:00
|
|
|
|
#endregion
|
2020-10-12 14:39:23 +09:00
|
|
|
|
}
|
2025-04-10 13:34:27 +09:00
|
|
|
|
}
|