12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331 |
- using OASystem.Domain.Entities;
- using OASystem.Domain.Entities.Groups;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
- public class GroupCostSavaDto
- {
-
- public List<Grp_CheckBoxsDto> CheckBoxs { get; set; }
-
- public List<Grp_GroupCostDto> GroupCosts { get; set; }
-
- public List<Grp_CostTypeHotelNumberDto> CostTypeHotelNumbers { get; set; }
-
- public List<Grp_GroupCostParameterDto> GroupCostParameters { get; set; }
- public int Userid { get; set; }
- public int Diid { get; set; }
- }
- public class CarGuidesDto
- {
-
- }
- public class GroupIsShareDto
- {
- public int Diid { get; set; }
- }
- public class Grp_CheckBoxsDto
- {
- public int Diid { get; set; }
-
-
-
- public string CbType { get; set; }
-
-
-
- public string CbValues { get; set; }
- }
- public class Grp_GroupCostDto
- {
- int diid;
-
-
-
- public int Diid
- {
- get { return diid; }
- set { diid = value; }
- }
- string day;
-
-
-
- public string DAY
- {
- get { return day; }
- set { day = value; }
- }
- string date;
-
-
-
- public string Date
- {
- get { return date; }
- set { date = value; }
- }
- string itin;
-
-
-
- public string ITIN
- {
- get { return itin; }
- set { itin = value; }
- }
- string carType;
-
-
-
- public string CarType
- {
- get { return carType; }
- set { carType = value; }
- }
- decimal carCost;
-
-
-
-
- public decimal CarCost
- {
- get { return carCost; }
- set { carCost = value; }
- }
- int carNumber;
-
-
-
-
- public int CarNumber
- {
- get { return carNumber; }
- set { carNumber = value; }
- }
- decimal carTiming;
-
-
-
-
- public decimal CarTiming
- {
- get { return carTiming; }
- set { carTiming = value; }
- }
- decimal tgs;
-
-
-
-
- public decimal TGS
- {
- get { return tgs; }
- set { tgs = value; }
- }
- decimal tgwh;
-
-
-
-
- public decimal TGWH
- {
- get { return tgwh; }
- set { tgwh = value; }
- }
- decimal tgn;
-
-
-
-
- public decimal TGN
- {
- get { return tgn; }
- set { tgn = value; }
- }
-
-
-
- decimal tgof;
-
- public decimal TGOF
- {
- get { return tgof; }
- set { tgof = value; }
- }
- decimal tgm;
-
-
-
-
- public decimal TGM
- {
- get { return tgm; }
- set { tgm = value; }
- }
- decimal tga;
-
-
-
-
- public decimal TGA
- {
- get { return tga; }
- set { tga = value; }
- }
- decimal tgtf;
-
-
-
-
- public decimal TGTF
- {
- get { return tgtf; }
- set { tgtf = value; }
- }
- decimal tgef;
-
-
-
-
- public decimal TGEF
- {
- get { return tgef; }
- set { tgef = value; }
- }
- decimal cfs;
-
-
-
-
- public decimal CFS
- {
- get { return cfs; }
- set { cfs = value; }
- }
-
-
-
- decimal cfm;
-
- public decimal CFM
- {
- get { return cfm; }
- set { cfm = value; }
- }
-
-
-
- decimal cfof;
-
- public decimal CFOF
- {
- get { return cfof; }
- set { cfof = value; }
- }
- decimal b;
-
-
-
-
- public decimal B
- {
- get { return b; }
- set { b = value; }
- }
- decimal l;
-
-
-
-
- public decimal L
- {
- get { return l; }
- set { l = value; }
- }
- decimal d;
-
-
-
-
- public decimal D
- {
- get { return d; }
- set { d = value; }
- }
- decimal tbr;
-
-
-
-
- public decimal TBR
- {
- get { return tbr; }
- set { tbr = value; }
- }
- decimal sgr;
-
-
-
-
- public decimal SGR
- {
- get { return sgr; }
- set { sgr = value; }
- }
- decimal jses;
-
-
-
-
- public decimal JS_ES
- {
- get { return jses; }
- set { jses = value; }
- }
- decimal suite;
-
-
-
-
- public decimal Suite
- {
- get { return suite; }
- set { suite = value; }
- }
- string accon;
-
-
-
- public string ACCON
- {
- get { return accon; }
- set { accon = value; }
- }
- decimal tv;
-
-
-
-
- public decimal TV
- {
- get { return tv; }
- set { tv = value; }
- }
- decimal il;
-
-
-
-
- public decimal iL
- {
- get { return il; }
- set { il = value; }
- }
- decimal iF;
-
-
-
-
- public decimal IF
- {
- get { return iF; }
- set { iF = value; }
- }
- decimal ef;
-
-
-
-
- public decimal EF
- {
- get { return ef; }
- set { ef = value; }
- }
- decimal brf;
-
-
-
-
- public decimal B_R_F
- {
- get { return brf; }
- set { brf = value; }
- }
- decimal te;
-
-
-
-
- public decimal TE
- {
- get { return te; }
- set { te = value; }
- }
- decimal tgtips;
-
-
-
-
- public decimal TGTips
- {
- get { return tgtips; }
- set { tgtips = value; }
- }
- decimal drvtips;
-
-
-
-
- public decimal DRVTips
- {
- get { return drvtips; }
- set { drvtips = value; }
- }
- decimal pc;
-
-
-
-
- public decimal PC
- {
- get { return pc; }
- set { pc = value; }
- }
- decimal tlf;
-
-
-
-
- public decimal TLF
- {
- get { return tlf; }
- set { tlf = value; }
- }
- decimal ect;
-
-
-
-
- public decimal ECT
- {
- get { return ect; }
- set { ect = value; }
- }
- }
- public class Grp_CostTypeHotelNumberDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int SGR { get; set; }
-
-
-
- public int TBR { get; set; }
-
-
-
- public int JSES { get; set; }
-
-
-
- public int SUITE { get; set; }
-
-
-
- public string Type { get; set; }
-
-
-
- public int Diid { get; set; }
- }
- public class Grp_GroupCostParameterDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
-
- public int DiId { get; set; }
-
-
-
-
- public string Currency { get; set; }
-
-
-
-
- public decimal Rate { get; set; }
-
-
-
-
- public decimal Tax { get; set; }
-
-
-
-
- public decimal FFYS { get; set; }
-
-
-
-
- public decimal HotelXS { get; set; }
-
-
-
-
- public decimal JJCCB { get; set; }
-
-
-
-
- public decimal JJCXS { get; set; }
-
-
-
-
- public int JJCRS { get; set; }
-
-
-
-
- public decimal GWCCB { get; set; }
-
-
-
-
- public decimal GWCXS { get; set; }
-
-
-
-
- public int GWCRS { get; set; }
-
-
-
-
- public decimal HCPCB { get; set; }
-
-
-
-
- public decimal HCPXS { get; set; }
-
-
-
-
- public int HCPRS { get; set; }
-
-
-
-
- public decimal CPCB { get; set; }
-
-
-
-
- public decimal CPXS { get; set; }
-
-
-
-
- public int CPRS { get; set; }
-
-
-
-
- public decimal BXCB { get; set; }
-
-
-
-
- public decimal BXXS { get; set; }
-
-
-
-
- public int BXRS { get; set; }
-
-
-
-
- public decimal HSCB { get; set; }
-
-
-
-
- public decimal HSXS { get; set; }
-
-
-
-
- public int HSRS { get; set; }
-
-
-
-
- public decimal VisaCB { get; set; }
-
-
-
-
- public decimal VisaXS { get; set; }
-
-
-
-
- public int VisaRS { get; set; }
-
-
-
-
- public decimal GWCB { get; set; }
-
-
-
-
- public decimal GWXS { get; set; }
-
-
-
-
- public int GWRS { get; set; }
-
-
-
-
- public decimal DJCB { get; set; }
-
-
-
- public int DJRS { get; set; }
-
-
-
- public decimal DJXS { get; set; }
-
-
-
-
- public decimal SGRCB { get; set; }
-
-
-
-
- public int SGRNumber { get; set; }
-
-
-
-
- public decimal SGRXS { get; set; }
-
-
-
-
- public decimal TBRCB { get; set; }
-
-
-
-
- public int TBRNumber { get; set; }
-
-
-
-
- public decimal TBRXS { get; set; }
-
-
-
-
- public decimal JSESCB { get; set; }
-
-
-
-
- public int JSESNumber { get; set; }
-
-
-
-
- public decimal JSESXS { get; set; }
-
-
-
-
- public decimal SUITECB { get; set; }
-
-
-
-
- public int SUITENumber { get; set; }
-
-
-
-
- public decimal SUITEXS { get; set; }
-
-
-
-
- public decimal LYJCB { get; set; }
-
-
-
-
- public decimal LYJXS { get; set; }
-
-
-
-
- public int LYJRS { get; set; }
-
-
-
-
- public int IsShare { get; set; }
-
-
-
-
- public string CostType { get; set; }
-
-
-
- public string CostTypeStartTime { get; set; }
-
-
-
- public string CostTypeendTime { get; set; }
-
-
-
-
- public int CostTypenumber { get; set; }
- }
- public class GroupCostInItDto
- {
- public int Diid { get; set; }
- }
- public class GroupCostExportWordFile
- {
- public int Diid { get; set; }
- public List<ExportWordFileAir> airs { get; set; }
- }
- public class ExportWordFileAir
- {
- public string code { get; set; }
- public int number { get; set; }
- public decimal price { get; set; }
- public string costType { get; set; }
- }
- public class GroupCostExportExcelFile
- {
- public int Diid { get; set; }
- public string costType { get; set; }
- public titleChunk title { get; set; }
- public List<LeftModel> leftInfo { get; set; }
- public List<RightModel> rightInfo { get; set; }
- public List<TitleModel> titleModel { get; set; }
- }
- public class ExportClientWordFileDto
- {
- public int Diid { get; set; }
- public string costType { get; set; }
- public decimal Rate { get; set; }
- public string CarGuides1 { get; set; }
- public string Meal { get; set; }
- public string SubsidizedMeals { get; set; }
- public string NightRepair { get; set; }
- public string AttractionsTickets { get; set; }
- public string MiscellaneousFees { get; set; }
- public string ATip { get; set; }
- public string TzZCost { get; set; }
- public List<LeftModel> leftInfo { get; set; }
- }
- public class LeftModel
- {
- public string Type { get; set; }
- public List<leftInfoModel> leftinfoNumber {get;set; }
- }
- public class RightModel
- {
- public string Type { get; set; }
- public List<RightInfoModel> rightInfoNumber { get; set; }
- }
- public class TitleModel
- {
- public string label { get; set; }
- public string text { get; set; }
- }
- public class RightInfoModel
- {
- public string cb { get; set; }
- public int index { get; set; }
- public string rs { get; set; }
- public string title { get; set; }
- public string xs { get; set; }
- public string bj { get; set; }
- }
- public class leftInfoModel
- {
- public string cb { get; set; }
- public int index { get; set; }
- public string rs { get; set; }
- public string title { get; set; }
- public string xs { get; set; }
- }
-
-
-
- public class GroupCost_Excel
- {
- int id;
-
-
-
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- string diid;
-
-
-
- public string Diid
- {
- get { return diid; }
- set { diid = value; }
- }
- string day;
-
-
-
- public string DAY
- {
- get { return day; }
- set { day = value; }
- }
- string date;
-
-
-
- public string Date
- {
- get { return date; }
- set { date = value; }
- }
- string itin;
-
-
-
- public string ITIN
- {
- get { return itin; }
- set { itin = value; }
- }
- string carType;
-
-
-
- public string CarType
- {
- get { return carType; }
- set { carType = value; }
- }
- string carCost;
-
-
-
- public string CarCost
- {
- get { return carCost; }
- set { carCost = value; }
- }
- string carNumber;
-
-
-
- public string CarNumber
- {
- get { return carNumber; }
- set { carNumber = value; }
- }
- string carTiming;
-
-
-
- public string CarTiming
- {
- get { return carTiming; }
- set { carTiming = value; }
- }
- string tgs;
-
-
-
- public string TGS
- {
- get { return tgs; }
- set { tgs = value; }
- }
- string tgn;
-
-
-
- public string TGN
- {
- get { return tgn; }
- set { tgn = value; }
- }
- string tgwk;
-
-
-
- public string TGWH
- {
- get { return tgwk; }
- set { tgwk = value; }
- }
-
-
-
- string tgof;
- public string TGOF
- {
- get { return tgof; }
- set { tgof = value; }
- }
- string tgm;
-
-
-
- public string TGM
- {
- get { return tgm; }
- set { tgm = value; }
- }
- string tga;
-
-
-
- public string TGA
- {
- get { return tga; }
- set { tga = value; }
- }
- string tgtf;
-
-
-
- public string TGTF
- {
- get { return tgtf; }
- set { tgtf = value; }
- }
- string tgef;
-
-
-
- public string TGEF
- {
- get { return tgef; }
- set { tgef = value; }
- }
- string cfs;
-
-
-
- public string CFS
- {
- get { return cfs; }
- set { cfs = value; }
- }
-
-
-
- string cfm;
- public string CFM
- {
- get { return cfm; }
- set { cfm = value; }
- }
-
-
-
- string cfof;
- public string CFOF
- {
- get { return cfof; }
- set { cfof = value; }
- }
- string b;
-
-
-
- public string B
- {
- get { return b; }
- set { b = value; }
- }
- string l;
-
-
-
- public string L
- {
- get { return l; }
- set { l = value; }
- }
- string d;
-
-
-
- public string D
- {
- get { return d; }
- set { d = value; }
- }
- string tbr;
-
-
-
- public string TBR
- {
- get { return tbr; }
- set { tbr = value; }
- }
- string sgr;
-
-
-
- public string SGR
- {
- get { return sgr; }
- set { sgr = value; }
- }
- string jses;
-
-
-
- public string JS_ES
- {
- get { return jses; }
- set { jses = value; }
- }
- string suite;
-
-
-
- public string Suite
- {
- get { return suite; }
- set { suite = value; }
- }
- string accon;
-
-
-
- public string ACCON
- {
- get { return accon; }
- set { accon = value; }
- }
- string tv;
-
-
-
- public string TV
- {
- get { return tv; }
- set { tv = value; }
- }
- string il;
-
-
-
- public string iL
- {
- get { return il; }
- set { il = value; }
- }
- string iF;
-
-
-
- public string IF
- {
- get { return iF; }
- set { iF = value; }
- }
- string ef;
-
-
-
- public string EF
- {
- get { return ef; }
- set { ef = value; }
- }
- string brf;
-
-
-
- public string B_R_F
- {
- get { return brf; }
- set { brf = value; }
- }
- string te;
-
-
-
- public string TE
- {
- get { return te; }
- set { te = value; }
- }
- string tgtips;
-
-
-
- public string TGTips
- {
- get { return tgtips; }
- set { tgtips = value; }
- }
- string drvtips;
-
-
-
- public string DRVTips
- {
- get { return drvtips; }
- set { drvtips = value; }
- }
- string pc;
-
-
-
- public string PC
- {
- get { return pc; }
- set { pc = value; }
- }
- string tlf;
-
-
-
- public string TLF
- {
- get { return tlf; }
- set { tlf = value; }
- }
- string ect;
-
-
-
- public string ECT
- {
- get { return ect; }
- set { ect = value; }
- }
- int oper;
-
-
-
- public int Oper
- {
- get { return oper; }
- set { oper = value; }
- }
- string opTime;
-
-
-
- public string OpTime
- {
- get { return opTime; }
- set { opTime = value; }
- }
- int isdel;
-
-
-
- public int Isdel
- {
- get { return isdel; }
- set { isdel = value; }
- }
- }
- public class titleChunk
- {
- public int GroupNumber { get; set; }
- public string TeamName { get; set; }
- public decimal Tax { get; set; }
- public string Currency { get; set; }
- public decimal Rate { get; set; }
- }
- public class GroupCostModulePromptDto
- {
- public int DiId { get; set; }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public int CTable { get; set; }
- }
- }
|