1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417 |
- using Google.Protobuf.WellKnownTypes;
- 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 string GwCount { get; set; }
- public string FyCount { get; set; }
- string efr;
-
-
-
- public string EFR
- {
- get { return efr; }
- set { efr = 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 decimal TDCCB { get; set; }
-
-
-
- public decimal TDCXS { get; set; }
-
-
-
- public int TDCRS { 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 string GwCount { get; set; }
- public string FyCount { get; set; }
- }
- 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 UserId { get; set; }
- public int DiId { get; set; }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public int CTable { get; set; }
- }
- public class HistoryCarDataDto
- {
- public string Param { get; set; }
- }
- public class HistoryCarDataView
- {
- public int id { get; set; }
- public string TeamName { get; set; }
- public decimal Price { get; set; }
- public string Area { get; set; }
- public string PriceName { get; set; }
- public string DatePrice { get; set; }
- public string PriceContent { get; set; }
- public string ServiceStartTime { get; set; }
- public string ServiceEndTime { get; set; }
- public DateTime? Start
- {
- get
- {
- if (DateTime.TryParse(this.ServiceStartTime, out DateTime time))
- {
- return time;
- }
- return null;
- }
- }
- public DateTime? End
- {
- get
- {
- if (DateTime.TryParse(this.ServiceEndTime, out DateTime time))
- {
- return time;
- }
- return null;
- }
- }
- }
- }
|