123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378 |
- // <auto-generated />
- using System;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- using wispro.sp.api;
- namespace wispro.sp.api.Migrations
- {
- [DbContext(typeof(spDbContext))]
- partial class spDbContextModelSnapshot : ModelSnapshot
- {
- protected override void BuildModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("Relational:MaxIdentifierLength", 128)
- .HasAnnotation("ProductVersion", "5.0.9")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<DateTime>("CreateTime")
- .HasColumnType("datetime2");
- b.Property<int>("CreaterId")
- .HasColumnType("int");
- b.Property<int>("ItemId")
- .HasColumnType("int");
- b.Property<string>("Reason")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<DateTime?>("ReviewTime")
- .HasColumnType("datetime2");
- b.Property<int?>("ReviewerId")
- .HasColumnType("int");
- b.Property<string>("ReviewerMemo")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("State")
- .HasColumnType("int");
- b.Property<int>("TypeId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("CreaterId");
- b.HasIndex("ItemId");
- b.HasIndex("ReviewerId");
- b.HasIndex("TypeId");
- b.ToTable("AppealRecord");
- });
- modelBuilder.Entity("wispro.sp.entity.AppealType", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("CanDoExpress")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<string>("Name")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("ReviewerExpress")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<int>("Type")
- .HasColumnType("int");
- b.HasKey("Id");
- b.ToTable("AppealType");
- b.HasData(
- new
- {
- Id = 1,
- CanDoExpress = "p.ItemStaffs.Count()>1",
- Name = "绩效点数分配比率",
- Type = 0
- },
- new
- {
- Id = 2,
- CanDoExpress = "p.DoItem==\"新申请\"",
- Name = "案件系数复核",
- ReviewerExpress = "p.Reviewer",
- Type = 0
- },
- new
- {
- Id = 3,
- CanDoExpress = "p.DoItem==\"新申请\"",
- Name = "处理事项系数复核",
- ReviewerExpress = "p.Reviewer",
- Type = 0
- },
- new
- {
- Id = 4,
- CanDoExpress = "",
- Name = "案件缺漏申诉",
- ReviewerExpress = "p.Reviewer",
- Type = 1
- },
- new
- {
- Id = 5,
- CanDoExpress = "p.isDanger()",
- Name = "案件严重超期说明",
- Type = 0
- },
- new
- {
- Id = 6,
- CanDoExpress = "p.DoItem==\"新申请\" || p.DoItem==\"翻译\"",
- Name = "按照翻译字数算绩效备注",
- Type = 0
- });
- });
- modelBuilder.Entity("wispro.sp.entity.AttachFile", b =>
- {
- b.Property<Guid>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("uniqueidentifier");
- b.Property<int?>("AppealRecordId")
- .HasColumnType("int");
- b.Property<string>("Name")
- .HasMaxLength(200)
- .HasColumnType("nvarchar(200)");
- b.Property<string>("SavePath")
- .HasMaxLength(200)
- .HasColumnType("nvarchar(200)");
- b.Property<int?>("UploadUserId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("AppealRecordId");
- b.HasIndex("UploadUserId");
- b.ToTable("AttachFile");
- });
- modelBuilder.Entity("wispro.sp.entity.BasePointRule", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("PointExpress")
- .HasMaxLength(100)
- .HasColumnType("nvarchar(100)");
- b.Property<int>("Priority")
- .HasColumnType("int");
- b.Property<string>("Rule")
- .HasMaxLength(1000)
- .HasColumnType("nvarchar(1000)");
- b.Property<string>("Type")
- .HasMaxLength(20)
- .HasColumnType("nvarchar(20)");
- b.HasKey("Id");
- b.ToTable("BasePointRule");
- b.HasData(
- new
- {
- Id = 1,
- PointExpress = "0",
- Priority = 136,
- Rule = "p.CaseNo.StartsWith(\"J\")",
- Type = "其它"
- },
- new
- {
- Id = 2,
- PointExpress = "0",
- Priority = 135,
- Rule = "p.AgentFeedbackMemo==\"已算绩效\"",
- Type = "其它"
- },
- new
- {
- Id = 3,
- PointExpress = "p.WordCount/1000*0.18",
- Priority = 134,
- Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"中-德\"",
- Type = "其它"
- },
- new
- {
- Id = 4,
- PointExpress = "p.WordCount/1000*0.16",
- Priority = 133,
- Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"中-英\"",
- Type = "其它"
- },
- new
- {
- Id = 5,
- PointExpress = "p.WordCount/1000*0.1",
- Priority = 132,
- Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"英-中\"",
- Type = "其它"
- },
- new
- {
- Id = 6,
- PointExpress = "0.2",
- Priority = 131,
- Rule = "(p.DoItem==\"提交检索主题申明\" || p.DoItem==\"提交检索主题声明\") && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "其它"
- },
- new
- {
- Id = 7,
- PointExpress = "0",
- Priority = 130,
- Rule = "p.DoItem==\"请求优先审查\"",
- Type = "其它"
- },
- new
- {
- Id = 8,
- PointExpress = "0.2",
- Priority = 129,
- Rule = "p.ApplicationType==\"外观设计\" && p.DoItem==\"新申请\"",
- Type = "其它"
- },
- new
- {
- Id = 9,
- PointExpress = "0",
- Priority = 128,
- Rule = "p.DoItem==\"专利挖掘与布局\"",
- Type = "其它"
- },
- new
- {
- Id = 10,
- PointExpress = "0",
- Priority = 127,
- Rule = "p.DoItem==\"知识点总结\"",
- Type = "其它"
- },
- new
- {
- Id = 11,
- PointExpress = "0",
- Priority = 126,
- Rule = "p.DoItem==\"询问放弃或复审\"",
- Type = "其它"
- },
- new
- {
- Id = 12,
- PointExpress = "0",
- Priority = 125,
- Rule = "p.DoItem==\"申请时提交IDS\"",
- Type = "其它"
- },
- new
- {
- Id = 13,
- PointExpress = "0.1",
- Priority = 124,
- Rule = "p.DoItem==\"提交ids\" || p.DoItem==\"提交IDS\" ",
- Type = "其它"
- },
- new
- {
- Id = 14,
- PointExpress = "0",
- Priority = 123,
- Rule = "p.DoItem==\"技术确认\"",
- Type = "其它"
- },
- new
- {
- Id = 15,
- PointExpress = "0",
- Priority = 122,
- Rule = "p.DoItem==\"绘图\"",
- Type = "其它"
- },
- new
- {
- Id = 16,
- PointExpress = "0.2",
- Priority = 121,
- Rule = "p.DoItem==\"分案评估+分案\"",
- Type = "其它"
- },
- new
- {
- Id = 17,
- PointExpress = "0.1",
- Priority = 120,
- Rule = "p.DoItem==\"分案评估\"",
- Type = "其它"
- },
- new
- {
- Id = 18,
- PointExpress = "0.2",
- Priority = 119,
- Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PAUS\")",
- Type = "其它"
- },
- new
- {
- Id = 19,
- PointExpress = "0.2",
- Priority = 118,
- Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PAEPO\") ",
- Type = "其它"
- },
- new
- {
- Id = 20,
- PointExpress = "0",
- Priority = 117,
- Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PACN\")",
- Type = "其它"
- },
- new
- {
- Id = 21,
- PointExpress = "0.1",
- Priority = 116,
- Rule = "p.DoItem==\"PPH\"",
- Type = "其它"
- },
- new
- {
- Id = 22,
- PointExpress = "0.2",
- Priority = 115,
- Rule = "p.DoItem==\"OA答辩校核\"",
- Type = "其它"
- },
- new
- {
- Id = 23,
- PointExpress = "0.2",
- Priority = 114,
- Rule = "p.DoItem==\"Election Action\"",
- Type = "其它"
- },
- new
- {
- Id = 24,
- PointExpress = "0.2",
- Priority = 113,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAUS\")",
- Type = "其它"
- },
- new
- {
- Id = 25,
- PointExpress = "0.2",
- Priority = 112,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAIN\")",
- Type = "其它"
- },
- new
- {
- Id = 26,
- PointExpress = "0.2",
- Priority = 111,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAGB\")",
- Type = "其它"
- },
- new
- {
- Id = 27,
- PointExpress = "0.2",
- Priority = 110,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "其它"
- },
- new
- {
- Id = 28,
- PointExpress = "0.2",
- Priority = 109,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PADE\")",
- Type = "其它"
- },
- new
- {
- Id = 29,
- PointExpress = "0",
- Priority = 108,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"WOCN\")",
- Type = "其它"
- },
- new
- {
- Id = 30,
- PointExpress = "0",
- Priority = 107,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PCTCN\")",
- Type = "其它"
- },
- new
- {
- Id = 31,
- PointExpress = "0",
- Priority = 106,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PACN\")",
- Type = "其它"
- },
- new
- {
- Id = 32,
- PointExpress = "0.2",
- Priority = 105,
- Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAAU\")",
- Type = "其它"
- },
- new
- {
- Id = 33,
- PointExpress = "0.2",
- Priority = 104,
- Rule = "p.AgentFeedbackMemo==\"检索结案\"",
- Type = "其它"
- },
- new
- {
- Id = 34,
- PointExpress = "0",
- Priority = 103,
- Rule = "p.DoItem==\"内部检索\"",
- Type = "其它"
- },
- new
- {
- Id = 35,
- PointExpress = "0.2",
- Priority = 102,
- Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"外-内\"",
- Type = "其它"
- },
- new
- {
- Id = 36,
- PointExpress = "0.3",
- Priority = 101,
- Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"内-外\"",
- Type = "其它"
- },
- new
- {
- Id = 37,
- PointExpress = "0.5",
- Priority = 100,
- Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"外-内\"",
- Type = "其它"
- },
- new
- {
- Id = 38,
- PointExpress = "0.7",
- Priority = 99,
- Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"内-外\"",
- Type = "其它"
- },
- new
- {
- Id = 39,
- PointExpress = "0.2",
- Priority = 98,
- Rule = "p.DoItem==\"发明一次OA授权\" && p.ApplicationType==\"发明\"",
- Type = "其它"
- },
- new
- {
- Id = 40,
- PointExpress = "0",
- Priority = 97,
- Rule = "p.DoItem==\"处理审查意见\" && p.AgentFeedbackMemo==\"客户不进行答辩\"",
- Type = "OA"
- },
- new
- {
- Id = 41,
- PointExpress = "0",
- Priority = 96,
- Rule = "p.DoItem==\"处理审查意见\" && p.AgentFeedbackMemo==\"电询/补正\"",
- Type = "OA"
- },
- new
- {
- Id = 42,
- PointExpress = "0",
- Priority = 95,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
- Type = "OA"
- },
- new
- {
- Id = 43,
- PointExpress = "0",
- Priority = 94,
- Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
- Type = "OA"
- },
- new
- {
- Id = 44,
- PointExpress = "0",
- Priority = 93,
- Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
- Type = "OA"
- },
- new
- {
- Id = 45,
- PointExpress = "0.14",
- Priority = 92,
- Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 46,
- PointExpress = "0.35",
- Priority = 91,
- Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 47,
- PointExpress = "0.21",
- Priority = 90,
- Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"非实质\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 48,
- PointExpress = "0.35",
- Priority = 89,
- Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 49,
- PointExpress = "0.14",
- Priority = 88,
- Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"形式\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 50,
- PointExpress = "0.14",
- Priority = 87,
- Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && p.CaseStage==\"二通\" && p.AgentFeedbackMemo==\"请款\"",
- Type = "OA"
- },
- new
- {
- Id = 51,
- PointExpress = "0",
- Priority = 86,
- Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\" || p.CaseStage==\"六通\" || p.CaseStage==\"七通\" || p.CaseStage==\"八通\") ",
- Type = "OA"
- },
- new
- {
- Id = 52,
- PointExpress = "0.2",
- Priority = 85,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
- Type = "OA"
- },
- new
- {
- Id = 53,
- PointExpress = "0.5",
- Priority = 84,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
- Type = "OA"
- },
- new
- {
- Id = 54,
- PointExpress = "0.3",
- Priority = 83,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
- Type = "OA"
- },
- new
- {
- Id = 55,
- PointExpress = "0",
- Priority = 82,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\")",
- Type = "OA"
- },
- new
- {
- Id = 56,
- PointExpress = "0",
- Priority = 81,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\")",
- Type = "OA"
- },
- new
- {
- Id = 57,
- PointExpress = "0.2",
- Priority = 80,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"二通\"",
- Type = "OA"
- },
- new
- {
- Id = 58,
- PointExpress = "0.2",
- Priority = 79,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"二通\"",
- Type = "OA"
- },
- new
- {
- Id = 59,
- PointExpress = "0.2",
- Priority = 78,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 60,
- PointExpress = "0.5",
- Priority = 77,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 61,
- PointExpress = "0.3",
- Priority = 76,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 62,
- PointExpress = "0.2",
- Priority = 75,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 63,
- PointExpress = "0.5",
- Priority = 74,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 64,
- PointExpress = "0.3",
- Priority = 73,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
- Type = "OA"
- },
- new
- {
- Id = 65,
- PointExpress = "0.2",
- Priority = 72,
- Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"复审\"",
- Type = "OA"
- },
- new
- {
- Id = 66,
- PointExpress = "0.5",
- Priority = 71,
- Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"发明\"",
- Type = "OA"
- },
- new
- {
- Id = 67,
- PointExpress = "0.1",
- Priority = 70,
- Rule = "p.AgentFeedbackMemo==\"涉外OA不答辩,发报导函结案\"",
- Type = "其它"
- },
- new
- {
- Id = 68,
- PointExpress = "0.8",
- Priority = 69,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"客户未提供答辩点,撰写英文报导函\"",
- Type = "OA"
- },
- new
- {
- Id = 69,
- PointExpress = "0.5",
- Priority = 68,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"客户提供答辩点,撰写英文报导函\"",
- Type = "OA"
- },
- new
- {
- Id = 70,
- PointExpress = "0.2",
- Priority = 67,
- Rule = "p.DoItem==\"申復\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PATW\")",
- Type = "OA"
- },
- new
- {
- Id = 71,
- PointExpress = "0.5",
- Priority = 66,
- Rule = "p.DoItem==\"申復\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PATW\")",
- Type = "OA"
- },
- new
- {
- Id = 72,
- PointExpress = "0.2",
- Priority = 65,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAIN\")",
- Type = "OA"
- },
- new
- {
- Id = 73,
- PointExpress = "0.2",
- Priority = 64,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAGB\")",
- Type = "OA"
- },
- new
- {
- Id = 74,
- PointExpress = "0.2",
- Priority = 63,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "OA"
- },
- new
- {
- Id = 75,
- PointExpress = "0.3",
- Priority = 62,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PADE\")",
- Type = "OA"
- },
- new
- {
- Id = 76,
- PointExpress = "0.2",
- Priority = 61,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAAU\")",
- Type = "OA"
- },
- new
- {
- Id = 77,
- PointExpress = "1.5",
- Priority = 60,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAIN\")",
- Type = "OA"
- },
- new
- {
- Id = 78,
- PointExpress = "1.5",
- Priority = 59,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAGB\")",
- Type = "OA"
- },
- new
- {
- Id = 79,
- PointExpress = "1.5",
- Priority = 58,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "OA"
- },
- new
- {
- Id = 80,
- PointExpress = "1.6",
- Priority = 57,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PADE\")",
- Type = "OA"
- },
- new
- {
- Id = 81,
- PointExpress = "1.5",
- Priority = 56,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAAU\")",
- Type = "OA"
- },
- new
- {
- Id = 82,
- PointExpress = "0.2",
- Priority = 55,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAUS\")",
- Type = "OA"
- },
- new
- {
- Id = 83,
- PointExpress = "1.5",
- Priority = 54,
- Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAUS\")",
- Type = "OA"
- },
- new
- {
- Id = 84,
- PointExpress = "1.5",
- Priority = 53,
- Rule = "p.DoItem==\"口审评估\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 85,
- PointExpress = "0.2",
- Priority = 52,
- Rule = "p.DoItem==\"口审评估\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 86,
- PointExpress = "0.2",
- Priority = 51,
- Rule = "p.DoItem==\"欧洲案答辩\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 87,
- PointExpress = "1.5",
- Priority = 50,
- Rule = "p.DoItem==\"欧洲案答辩\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 88,
- PointExpress = "0.2",
- Priority = 49,
- Rule = "p.DoItem==\"RCE\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 89,
- PointExpress = "1.5",
- Priority = 48,
- Rule = "p.DoItem==\"RCE\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 90,
- PointExpress = "0.2",
- Priority = 47,
- Rule = "p.DoItem==\"Non Final Action\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 91,
- PointExpress = "1.5",
- Priority = 46,
- Rule = "p.DoItem==\"Non Final Action\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 92,
- PointExpress = "0.1",
- Priority = 45,
- Rule = "p.DoItem==\"form 3-8(2)\" || p.DoItem==\"Form 3-8(2)\" || p.DoItem==\"Form 3-8(2)\"",
- Type = "OA"
- },
- new
- {
- Id = 93,
- PointExpress = "0.1",
- Priority = 44,
- Rule = "p.DoItem==\"form 3\"",
- Type = "OA"
- },
- new
- {
- Id = 94,
- PointExpress = "0.2",
- Priority = 43,
- Rule = "p.DoItem==\"Final Action\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 95,
- PointExpress = "1.5",
- Priority = 42,
- Rule = "p.DoItem==\"Final Action\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 96,
- PointExpress = "0.2",
- Priority = 41,
- Rule = "p.DoItem==\"Advisory Action\" && p.DoItemCoefficient==\"形式\"",
- Type = "OA"
- },
- new
- {
- Id = 97,
- PointExpress = "1.5",
- Priority = 40,
- Rule = "p.DoItem==\"Advisory Action\" && p.DoItemCoefficient==\"实质\"",
- Type = "OA"
- },
- new
- {
- Id = 98,
- PointExpress = "p.WordCount/1000*0.18",
- Priority = 39,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"中-德\" && p.WordCount !=null",
- Type = "其它"
- },
- new
- {
- Id = 99,
- PointExpress = "p.WordCount/1000*0.16",
- Priority = 38,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"中-英\" && p.WordCount !=null",
- Type = "其它"
- },
- new
- {
- Id = 100,
- PointExpress = "p.WordCount/1000*0.1",
- Priority = 37,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"英-中\" && p.WordCount !=null",
- Type = "其它"
- },
- new
- {
- Id = 101,
- PointExpress = "0",
- Priority = 36,
- Rule = "(p.ApplicationType==\"实用新型\" || p.ApplicationType==\"发明\") && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"客户不进行答辩\"",
- Type = "其它"
- },
- new
- {
- Id = 102,
- PointExpress = "1.26",
- Priority = 35,
- Rule = "p.CaseNo.StartsWith(\"PAUS\") && p.AgentFeedbackMemo==\"发文后客户原因取消申请,系统结案\"",
- Type = "新申请"
- },
- new
- {
- Id = 103,
- PointExpress = "1.33",
- Priority = 34,
- Rule = "p.CaseNo.StartsWith(\"PADE\") && p.AgentFeedbackMemo==\"发文后客户原因取消申请,系统结案\"",
- Type = "新申请"
- },
- new
- {
- Id = 104,
- PointExpress = "0.7",
- Priority = 33,
- Rule = "p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"发文后客户取消申请\"",
- Type = "新申请"
- },
- new
- {
- Id = 105,
- PointExpress = "0.49",
- Priority = 32,
- Rule = "p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"发文后客户取消申请\"",
- Type = "新申请"
- },
- new
- {
- Id = 106,
- PointExpress = "0",
- Priority = 31,
- Rule = "p.AgentFeedbackMemo==\"撰写中客户取消申请\"",
- Type = "其它"
- },
- new
- {
- Id = 107,
- PointExpress = "1.5",
- Priority = 30,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && p.AgentFeedbackMemo==\"外到内首次申请\"",
- Type = "新申请"
- },
- new
- {
- Id = 108,
- PointExpress = "0.1",
- Priority = 29,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"转格式\"",
- Type = "其它"
- },
- new
- {
- Id = 109,
- PointExpress = "1.5",
- Priority = 28,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"外-内首次申请\"",
- Type = "新申请"
- },
- new
- {
- Id = 110,
- PointExpress = "1",
- Priority = 27,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"首次中文案\"",
- Type = "新申请"
- },
- new
- {
- Id = 111,
- PointExpress = "0.7",
- Priority = 26,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"涉外实质改权\"",
- Type = "新申请"
- },
- new
- {
- Id = 112,
- PointExpress = "0.5",
- Priority = 25,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"改权+改说明书\"",
- Type = "其它"
- },
- new
- {
- Id = 113,
- PointExpress = "0.3",
- Priority = 24,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"改权\"",
- Type = "其它"
- },
- new
- {
- Id = 114,
- PointExpress = "1.8",
- Priority = 23,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"PCT首次英文案\"",
- Type = "新申请"
- },
- new
- {
- Id = 115,
- PointExpress = "0.2",
- Priority = 22,
- Rule = "p.AgentFeedbackMemo==\"我方转格式、复核\"",
- Type = "其它"
- },
- new
- {
- Id = 116,
- PointExpress = "0",
- Priority = 21,
- Rule = "p.AgentFeedbackMemo==\"我方代交\"",
- Type = "其它"
- },
- new
- {
- Id = 117,
- PointExpress = "0.5",
- Priority = 20,
- Rule = "p.CaseNo.StartsWith(\"PAUS\") && (p.CaseNo.EndsWith(\"-同套\") || p.CaseNo.EndsWith(\"CA\") || p.CaseNo.EndsWith(\"CIP\") || p.CaseNo.EndsWith(\"分案\")) ",
- Type = "其它"
- },
- new
- {
- Id = 118,
- PointExpress = "0.2",
- Priority = 19,
- Rule = "(p.CaseNo.StartsWith(\"PAMY \") || p.CaseNo.StartsWith(\"PADE\") || p.CaseNo.StartsWith(\"PAGB\") || p.CaseNo.StartsWith(\"PAIN\") || p.CaseNo.StartsWith(\"PAUS\") || p.CaseNo.StartsWith(\"PAEPO\") ) && p.AgentFeedbackMemo==\"同套\"",
- Type = "其它"
- },
- new
- {
- Id = 119,
- PointExpress = "0.3",
- Priority = 18,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-分案\")",
- Type = "其它"
- },
- new
- {
- Id = 120,
- PointExpress = "1.8",
- Priority = 17,
- Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"欧洲案首次\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "新申请"
- },
- new
- {
- Id = 121,
- PointExpress = "0.2",
- Priority = 16,
- Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"大陆案转台湾案\"",
- Type = "其它"
- },
- new
- {
- Id = 122,
- PointExpress = "1",
- Priority = 15,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
- Type = "新申请"
- },
- new
- {
- Id = 123,
- PointExpress = "0.2",
- Priority = 14,
- Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"台湾案转大陆案\"",
- Type = "其它"
- },
- new
- {
- Id = 124,
- PointExpress = "0.1",
- Priority = 13,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
- Type = "其它"
- },
- new
- {
- Id = 125,
- PointExpress = "0.7",
- Priority = 12,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
- Type = "新申请"
- },
- new
- {
- Id = 126,
- PointExpress = "0.1",
- Priority = 11,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
- Type = "其它"
- },
- new
- {
- Id = 127,
- PointExpress = "1.7",
- Priority = 10,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAUS\") && (p.Customer!=null && p.Customer.Name.Contains(\"OPPO\"))",
- Type = "新申请"
- },
- new
- {
- Id = 128,
- PointExpress = "1.8",
- Priority = 9,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAUS\")",
- Type = "新申请"
- },
- new
- {
- Id = 129,
- PointExpress = "1.8",
- Priority = 8,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAGB\")",
- Type = "新申请"
- },
- new
- {
- Id = 130,
- PointExpress = "0.2",
- Priority = 7,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAEPO\")",
- Type = "其它"
- },
- new
- {
- Id = 131,
- PointExpress = "1.9",
- Priority = 6,
- Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PADE\")",
- Type = "新申请"
- },
- new
- {
- Id = 132,
- PointExpress = "0.1",
- Priority = 5,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-TS\")",
- Type = "其它"
- },
- new
- {
- Id = 133,
- PointExpress = "1",
- Priority = 4,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && (p.Customer!=null && p.Customer.Name.Contains(\"OPPO\"))",
- Type = "新申请"
- },
- new
- {
- Id = 134,
- PointExpress = "0.7",
- Priority = 3,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\")",
- Type = "新申请"
- },
- new
- {
- Id = 135,
- PointExpress = "1",
- Priority = 2,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-TS\")",
- Type = "新申请"
- },
- new
- {
- Id = 136,
- PointExpress = "1",
- Priority = 1,
- Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\")",
- Type = "新申请"
- },
- new
- {
- Id = 137,
- PointExpress = "0",
- Priority = 250,
- Rule = "p.CaseNo.StartsWith(\"S\")",
- Type = "专案"
- },
- new
- {
- Id = 138,
- PointExpress = "0.2",
- Priority = 85,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
- Type = "OA"
- },
- new
- {
- Id = 139,
- PointExpress = "0.5",
- Priority = 84,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
- Type = "OA"
- },
- new
- {
- Id = 140,
- PointExpress = "0.3",
- Priority = 83,
- Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
- Type = "OA"
- });
- });
- modelBuilder.Entity("wispro.sp.entity.CalMonth", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("Month")
- .HasColumnType("int")
- .HasColumnName("month");
- b.Property<int>("Status")
- .HasColumnType("int")
- .HasColumnName("status");
- b.Property<int>("Year")
- .HasColumnType("int")
- .HasColumnName("year");
- b.HasKey("Id");
- b.ToTable("CalMonth");
- });
- modelBuilder.Entity("wispro.sp.entity.CaseCeoffcient", b =>
- {
- b.Property<string>("Ceoffcient")
- .HasColumnType("nvarchar(450)");
- b.Property<double>("Value")
- .HasColumnType("float");
- b.HasKey("Ceoffcient");
- b.ToTable("CaseCeofficient");
- b.HasData(
- new
- {
- Ceoffcient = "S",
- Value = 2.5
- },
- new
- {
- Ceoffcient = "A",
- Value = 1.5
- },
- new
- {
- Ceoffcient = "B",
- Value = 1.0
- },
- new
- {
- Ceoffcient = "C",
- Value = 0.69999999999999996
- },
- new
- {
- Ceoffcient = "D",
- Value = 0.40000000000000002
- });
- });
- modelBuilder.Entity("wispro.sp.entity.Customer", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Address")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<string>("ContactMan")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("Name")
- .IsRequired()
- .HasMaxLength(200)
- .HasColumnType("nvarchar(200)");
- b.Property<string>("Phone")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<int?>("ResponseManId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("ResponseManId");
- b.ToTable("Customer");
- });
- modelBuilder.Entity("wispro.sp.entity.Department", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Memo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("ancestors")
- .HasColumnType("nvarchar(max)");
- b.Property<int?>("order_num")
- .HasColumnType("int");
- b.Property<int?>("parentId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.ToTable("Department");
- });
- modelBuilder.Entity("wispro.sp.entity.DepartmentPosition", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("PositionId")
- .HasColumnType("int");
- b.Property<int>("StaffId")
- .HasColumnType("int");
- b.Property<int>("departmentId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("PositionId");
- b.HasIndex("StaffId");
- b.HasIndex("departmentId");
- b.ToTable("DepartmentPosition");
- });
- modelBuilder.Entity("wispro.sp.entity.InputField", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("AppealState")
- .HasColumnType("int");
- b.Property<int>("AppealTypeId")
- .HasColumnType("int");
- b.Property<bool>("CanMuliSelect")
- .HasColumnType("bit");
- b.Property<string>("FieldName")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("FieldType")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("MapObjectField")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("MapObjectFieldLabel")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("MapSaveCondition")
- .HasColumnType("nvarchar(max)");
- b.Property<int?>("MaxSize")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("AppealTypeId");
- b.ToTable("InputField");
- b.HasData(
- new
- {
- Id = 1,
- AppealState = 0,
- AppealTypeId = 1,
- CanMuliSelect = false,
- FieldName = "分配比率",
- FieldType = "System.Double",
- MapObjectField = "ItemStaffs.PerformancePoint",
- MapObjectFieldLabel = "ItemStaffs.DoPerson.Name"
- },
- new
- {
- Id = 3,
- AppealState = 0,
- AppealTypeId = 1,
- CanMuliSelect = false,
- FieldName = "原因",
- FieldType = "System.String"
- },
- new
- {
- Id = 4,
- AppealState = 1,
- AppealTypeId = 1,
- CanMuliSelect = false,
- FieldName = "备注",
- FieldType = "System.String"
- },
- new
- {
- Id = 5,
- AppealState = 1,
- AppealTypeId = 1,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.String"
- },
- new
- {
- Id = 6,
- AppealState = 0,
- AppealTypeId = 2,
- CanMuliSelect = false,
- FieldName = "案件系数",
- FieldType = "System.String",
- MapObjectField = "CaseCoefficient"
- },
- new
- {
- Id = 9,
- AppealState = 1,
- AppealTypeId = 2,
- CanMuliSelect = false,
- FieldName = "备注",
- FieldType = "System.String"
- },
- new
- {
- Id = 10,
- AppealState = 1,
- AppealTypeId = 2,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.String"
- },
- new
- {
- Id = 11,
- AppealState = 0,
- AppealTypeId = 3,
- CanMuliSelect = false,
- FieldName = "处理事项系数",
- FieldType = "System.String",
- MapObjectField = "DoItemCoefficient"
- },
- new
- {
- Id = 12,
- AppealState = 1,
- AppealTypeId = 3,
- CanMuliSelect = false,
- FieldName = "备注",
- FieldType = "System.String"
- },
- new
- {
- Id = 13,
- AppealState = 1,
- AppealTypeId = 3,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.String"
- },
- new
- {
- Id = 14,
- AppealState = 0,
- AppealTypeId = 4,
- CanMuliSelect = false,
- FieldName = "我方文号",
- FieldType = "System.String"
- },
- new
- {
- Id = 15,
- AppealState = 0,
- AppealTypeId = 4,
- CanMuliSelect = false,
- FieldName = "处理事项",
- FieldType = "System.String"
- },
- new
- {
- Id = 16,
- AppealState = 1,
- AppealTypeId = 4,
- CanMuliSelect = false,
- FieldName = "备注",
- FieldType = "System.String"
- },
- new
- {
- Id = 17,
- AppealState = 1,
- AppealTypeId = 4,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.String"
- },
- new
- {
- Id = 18,
- AppealState = 0,
- AppealTypeId = 5,
- CanMuliSelect = false,
- FieldName = "超期说明",
- FieldType = "System.String",
- MapObjectField = "OverDueMemo"
- },
- new
- {
- Id = 21,
- AppealState = 1,
- AppealTypeId = 5,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.String"
- },
- new
- {
- Id = 22,
- AppealState = 1,
- AppealTypeId = 5,
- CanMuliSelect = false,
- FieldName = "备注",
- FieldType = "System.String"
- },
- new
- {
- Id = 19,
- AppealState = 0,
- AppealTypeId = 6,
- CanMuliSelect = false,
- FieldName = "翻译类型",
- FieldType = "System.String",
- MapObjectField = "AgentFeedbackMemo"
- },
- new
- {
- Id = 20,
- AppealState = 0,
- AppealTypeId = 6,
- CanMuliSelect = false,
- FieldName = "翻译字数",
- FieldType = "System.Int32",
- MapObjectField = "WordCount"
- },
- new
- {
- Id = 23,
- AppealState = 1,
- AppealTypeId = 6,
- CanMuliSelect = false,
- FieldName = "审核意见",
- FieldType = "System.Int32"
- },
- new
- {
- Id = 24,
- AppealState = 1,
- AppealTypeId = 6,
- CanMuliSelect = false,
- FieldName = "翻译字数",
- FieldType = "System.Int32",
- MapObjectField = "WordCount"
- });
- });
- modelBuilder.Entity("wispro.sp.entity.InputFieldValue", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("AppealRecordId")
- .HasColumnType("int");
- b.Property<int>("InputFieldId")
- .HasColumnType("int");
- b.Property<string>("Label")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Value")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<string>("mapExpress")
- .HasColumnType("nvarchar(max)");
- b.HasKey("Id");
- b.HasIndex("AppealRecordId");
- b.HasIndex("InputFieldId");
- b.ToTable("InputFieldValue");
- });
- modelBuilder.Entity("wispro.sp.entity.ItemStaff", b =>
- {
- b.Property<int>("ItemId")
- .HasColumnType("int");
- b.Property<int>("DoPersonId")
- .HasColumnType("int");
- b.Property<double?>("PerformancePoint")
- .HasColumnType("float");
- b.HasKey("ItemId", "DoPersonId");
- b.HasIndex("DoPersonId");
- b.ToTable("ItemStaff");
- });
- modelBuilder.Entity("wispro.sp.entity.Message", b =>
- {
- b.Property<Guid>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("uniqueidentifier");
- b.Property<int>("FromId")
- .HasColumnType("int");
- b.Property<string>("MessageInfo")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<int>("Type")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("FromId");
- b.ToTable("Message");
- });
- modelBuilder.Entity("wispro.sp.entity.MessagePerformanceItem", b =>
- {
- b.Property<int>("ItemId")
- .HasColumnType("int");
- b.Property<Guid>("MessageId")
- .HasColumnType("uniqueidentifier");
- b.HasKey("ItemId", "MessageId");
- b.HasIndex("MessageId");
- b.ToTable("MessagePerformanceItems");
- });
- modelBuilder.Entity("wispro.sp.entity.MessageReadRecord", b =>
- {
- b.Property<Guid>("MessageId")
- .HasColumnType("uniqueidentifier");
- b.Property<int>("StaffId")
- .HasColumnType("int");
- b.Property<Guid?>("MessageId1")
- .HasColumnType("uniqueidentifier");
- b.Property<bool>("isReaded")
- .HasColumnType("bit");
- b.HasKey("MessageId", "StaffId");
- b.HasIndex("MessageId1");
- b.HasIndex("StaffId");
- b.ToTable("MessageReadRecord");
- });
- modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("AgentFeedbackMemo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("ApplicationName")
- .HasMaxLength(200)
- .HasColumnType("nvarchar(200)");
- b.Property<string>("ApplicationType")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<decimal?>("BasePoint")
- .HasColumnType("numeric(18,2)");
- b.Property<string>("BusinessType")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<int>("CalMonthId")
- .HasColumnType("int");
- b.Property<string>("CaseCoefficient")
- .HasMaxLength(10)
- .HasColumnType("nvarchar(10)");
- b.Property<string>("CaseMemo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("CaseName")
- .HasMaxLength(500)
- .HasColumnType("nvarchar(500)");
- b.Property<string>("CaseNo")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("CaseStage")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("CaseState")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("CaseType")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<int?>("CustomerId")
- .HasColumnType("int");
- b.Property<DateTime?>("CustomerLimitDate")
- .HasColumnType("date");
- b.Property<string>("DoItem")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("DoItemCoefficient")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("DoItemMemo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("DoItemState")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<DateTime?>("EntrustingDate")
- .HasColumnType("date");
- b.Property<DateTime?>("FinalizationDate")
- .HasColumnType("date");
- b.Property<DateTime?>("FinishedDate")
- .HasColumnType("date");
- b.Property<DateTime?>("FirstDraftDate")
- .HasColumnType("date");
- b.Property<DateTime?>("InternalDate")
- .HasColumnType("date");
- b.Property<string>("OverDueMemo")
- .HasMaxLength(100)
- .HasColumnType("nvarchar(100)");
- b.Property<int?>("PreOastaffId")
- .HasColumnType("int")
- .HasColumnName("PreOAStaffId");
- b.Property<string>("ReturnCasseNo")
- .HasColumnType("nvarchar(max)");
- b.Property<DateTime?>("ReturnDate")
- .HasColumnType("date");
- b.Property<int?>("ReviewerId")
- .HasColumnType("int");
- b.Property<int?>("Status")
- .HasColumnType("int");
- b.Property<string>("Type")
- .HasColumnType("nvarchar(max)");
- b.Property<int?>("WordCount")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("CalMonthId");
- b.HasIndex("CustomerId");
- b.HasIndex("PreOastaffId");
- b.HasIndex("ReviewerId");
- b.ToTable("PerformanceItem");
- });
- modelBuilder.Entity("wispro.sp.entity.Position", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Memo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .HasColumnType("nvarchar(max)");
- b.HasKey("Id");
- b.ToTable("Position");
- });
- modelBuilder.Entity("wispro.sp.entity.SelectValue", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("InputFieldId")
- .HasColumnType("int");
- b.Property<string>("Value")
- .HasColumnType("nvarchar(max)");
- b.HasKey("Id");
- b.HasIndex("InputFieldId");
- b.ToTable("SelectValue");
- b.HasData(
- new
- {
- Id = 1,
- InputFieldId = 5,
- Value = "同意"
- },
- new
- {
- Id = 2,
- InputFieldId = 5,
- Value = "拒绝"
- },
- new
- {
- Id = 3,
- InputFieldId = 10,
- Value = "同意"
- },
- new
- {
- Id = 4,
- InputFieldId = 10,
- Value = "拒绝"
- },
- new
- {
- Id = 5,
- InputFieldId = 13,
- Value = "同意"
- },
- new
- {
- Id = 6,
- InputFieldId = 13,
- Value = "拒绝"
- },
- new
- {
- Id = 7,
- InputFieldId = 17,
- Value = "同意"
- },
- new
- {
- Id = 8,
- InputFieldId = 17,
- Value = "拒绝"
- },
- new
- {
- Id = 9,
- InputFieldId = 6,
- Value = "S"
- },
- new
- {
- Id = 10,
- InputFieldId = 6,
- Value = "A"
- },
- new
- {
- Id = 11,
- InputFieldId = 6,
- Value = "B"
- },
- new
- {
- Id = 12,
- InputFieldId = 6,
- Value = "C"
- },
- new
- {
- Id = 13,
- InputFieldId = 6,
- Value = "D"
- },
- new
- {
- Id = 14,
- InputFieldId = 11,
- Value = "实质"
- },
- new
- {
- Id = 15,
- InputFieldId = 11,
- Value = "形式"
- },
- new
- {
- Id = 16,
- InputFieldId = 19,
- Value = "中-德"
- },
- new
- {
- Id = 17,
- InputFieldId = 19,
- Value = "中-英"
- },
- new
- {
- Id = 18,
- InputFieldId = 19,
- Value = "英-中"
- },
- new
- {
- Id = 19,
- InputFieldId = 22,
- Value = "同意"
- },
- new
- {
- Id = 20,
- InputFieldId = 22,
- Value = "拒绝"
- });
- });
- modelBuilder.Entity("wispro.sp.entity.Staff", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Account")
- .IsRequired()
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("Department")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<DateTime?>("EntyDate")
- .HasColumnType("date");
- b.Property<bool>("IsCalPerformsnce")
- .HasColumnType("bit")
- .HasColumnName("isCalPerformsnce");
- b.Property<bool>("IsOnJob")
- .HasColumnType("bit");
- b.Property<string>("Mail")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Memo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Mobile")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .IsRequired()
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.Property<string>("Password")
- .IsRequired()
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Sex")
- .HasColumnType("nvarchar(max)");
- b.Property<int?>("StaffGradeId")
- .HasColumnType("int");
- b.Property<string>("Status")
- .IsRequired()
- .HasMaxLength(25)
- .HasColumnType("nvarchar(25)");
- b.Property<string>("Tel")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("WorkPlace")
- .HasMaxLength(50)
- .HasColumnType("nvarchar(50)");
- b.HasKey("Id");
- b.HasIndex("StaffGradeId");
- b.ToTable("Staff");
- });
- modelBuilder.Entity("wispro.sp.entity.StaffGrade", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<double>("Coefficient")
- .HasColumnType("float");
- b.Property<string>("Grade")
- .IsRequired()
- .HasMaxLength(5)
- .HasColumnType("nchar(5)")
- .IsFixedLength(true);
- b.HasKey("Id");
- b.ToTable("StaffGrade");
- b.HasData(
- new
- {
- Id = 1,
- Coefficient = 1.2,
- Grade = "S级"
- },
- new
- {
- Id = 2,
- Coefficient = 1.1000000000000001,
- Grade = "A3级"
- },
- new
- {
- Id = 3,
- Coefficient = 1.1000000000000001,
- Grade = "A2级"
- },
- new
- {
- Id = 4,
- Coefficient = 1.1000000000000001,
- Grade = "A1级"
- },
- new
- {
- Id = 5,
- Coefficient = 1.0,
- Grade = "B3级"
- },
- new
- {
- Id = 6,
- Coefficient = 1.0,
- Grade = "B2级"
- },
- new
- {
- Id = 7,
- Coefficient = 0.90000000000000002,
- Grade = "B1级"
- },
- new
- {
- Id = 8,
- Coefficient = 0.90000000000000002,
- Grade = "C3级"
- },
- new
- {
- Id = 9,
- Coefficient = 0.69999999999999996,
- Grade = "C2级"
- },
- new
- {
- Id = 10,
- Coefficient = 0.69999999999999996,
- Grade = "C1级"
- },
- new
- {
- Id = 11,
- Coefficient = 0.59999999999999998,
- Grade = "D3级"
- },
- new
- {
- Id = 12,
- Coefficient = 0.59999999999999998,
- Grade = "D2级"
- },
- new
- {
- Id = 13,
- Coefficient = 0.5,
- Grade = "D1级"
- },
- new
- {
- Id = 14,
- Coefficient = 1.1000000000000001,
- Grade = "A级"
- },
- new
- {
- Id = 15,
- Coefficient = 1.0,
- Grade = "C级"
- },
- new
- {
- Id = 16,
- Coefficient = 0.90000000000000002,
- Grade = "D级"
- });
- });
- modelBuilder.Entity("wispro.sp.entity.StaffStatistics", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("CalMonthId")
- .HasColumnType("int");
- b.Property<int>("StaffId")
- .HasColumnType("int");
- b.Property<string>("jxType")
- .HasColumnType("nvarchar(max)");
- b.Property<double?>("totalActuallyPoint")
- .HasColumnType("float");
- b.Property<double?>("totalBasePoint")
- .HasColumnType("float");
- b.HasKey("Id");
- b.HasIndex("CalMonthId");
- b.HasIndex("StaffId");
- b.ToTable("StaffStatistics");
- });
- modelBuilder.Entity("wispro.sp.entity.VerifyCoefficient", b =>
- {
- b.Property<int>("CheckerId")
- .HasColumnType("int");
- b.Property<int>("DoPersonId")
- .HasColumnType("int");
- b.Property<double>("Coefficient")
- .HasColumnType("float");
- b.HasKey("CheckerId", "DoPersonId");
- b.HasIndex("DoPersonId");
- b.ToTable("VerifyCoefficient");
- b.HasData(
- new
- {
- CheckerId = 1,
- DoPersonId = 5,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 6,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 7,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 8,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 9,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 10,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 11,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 12,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 1,
- DoPersonId = 13,
- Coefficient = 0.59999999999999998
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 5,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 6,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 7,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 8,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 9,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 10,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 11,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 12,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 2,
- DoPersonId = 13,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 5,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 6,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 7,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 8,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 9,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 10,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 11,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 12,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 3,
- DoPersonId = 13,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 5,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 6,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 7,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 8,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 9,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 10,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 11,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 12,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 4,
- DoPersonId = 13,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 5,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 6,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 7,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 8,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 9,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 10,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 11,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 12,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 5,
- DoPersonId = 13,
- Coefficient = 0.5
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 5,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 6,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 7,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 8,
- Coefficient = 0.20000000000000001
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 9,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 10,
- Coefficient = 0.29999999999999999
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 11,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 12,
- Coefficient = 0.40000000000000002
- },
- new
- {
- CheckerId = 6,
- DoPersonId = 13,
- Coefficient = 0.5
- });
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("InputForm")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("OnActionObjectType")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("StepId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("StepId");
- b.ToTable("Action");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.InputValueSetting", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("DisplayName")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Options")
- .HasColumnType("nvarchar(max)");
- b.Property<int?>("ParentSettingId")
- .HasColumnType("int");
- b.Property<int>("actionId")
- .HasColumnType("int");
- b.Property<string>("bindField")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("bindFieldSavetoObjectCondition")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("valueType")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("ParentSettingId");
- b.HasIndex("actionId");
- b.ToTable("InputValueSetting");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Step", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Name")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("defaultResponseSetting")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("stepType")
- .HasColumnType("int");
- b.Property<int>("workflowId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("workflowId");
- b.ToTable("Step");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.TrasferCondition", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("Condition")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("StepId")
- .HasColumnType("int");
- b.Property<int>("nextStepId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("StepId");
- b.HasIndex("nextStepId");
- b.ToTable("TrasferCondition");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Workflow", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("ContentObjectType")
- .HasColumnType("nvarchar(max)");
- b.Property<DateTime>("CreateTime")
- .HasColumnType("datetime2");
- b.Property<int>("CreateUserId")
- .HasColumnType("int");
- b.Property<DateTime>("EffectivrDate")
- .HasColumnType("datetime2");
- b.Property<int>("EndStepId")
- .HasColumnType("int");
- b.Property<DateTime>("ExpirationDate")
- .HasColumnType("datetime2");
- b.Property<int>("InitActionId")
- .HasColumnType("int");
- b.Property<string>("Memo")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Name")
- .HasColumnType("nvarchar(max)");
- b.HasKey("Id");
- b.HasIndex("CreateUserId");
- b.HasIndex("InitActionId");
- b.ToTable("Workflow");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.InputValue", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<string>("value")
- .HasColumnType("nvarchar(max)");
- b.Property<int>("valueSettingId")
- .HasColumnType("int");
- b.Property<int>("workflowInstanceId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("valueSettingId");
- b.HasIndex("workflowInstanceId");
- b.ToTable("InputValue");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.StepInstance", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int?>("PreviousStepId")
- .HasColumnType("int");
- b.Property<int>("stepId")
- .HasColumnType("int");
- b.Property<int>("workflowInstanceId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("stepId");
- b.HasIndex("workflowInstanceId");
- b.ToTable("StepInstance");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.WorkflowInstance", b =>
- {
- b.Property<int>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("int")
- .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
- b.Property<int>("ObjectId")
- .HasColumnType("int");
- b.Property<int>("workflowId")
- .HasColumnType("int");
- b.HasKey("Id");
- b.HasIndex("workflowId");
- b.ToTable("WorkflowInstance");
- });
- modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
- {
- b.HasOne("wispro.sp.entity.Staff", "Creater")
- .WithMany()
- .HasForeignKey("CreaterId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
- .WithMany()
- .HasForeignKey("ItemId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Staff", "Reviewer")
- .WithMany()
- .HasForeignKey("ReviewerId")
- .OnDelete(DeleteBehavior.NoAction);
- b.HasOne("wispro.sp.entity.AppealType", "Type")
- .WithMany()
- .HasForeignKey("TypeId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.Navigation("Creater");
- b.Navigation("Item");
- b.Navigation("Reviewer");
- b.Navigation("Type");
- });
- modelBuilder.Entity("wispro.sp.entity.AttachFile", b =>
- {
- b.HasOne("wispro.sp.entity.AppealRecord", "AppealRecord")
- .WithMany("AttachFiles")
- .HasForeignKey("AppealRecordId")
- .HasConstraintName("FK_AttachFile_AppealRecord");
- b.HasOne("wispro.sp.entity.Staff", "UploadUser")
- .WithMany()
- .HasForeignKey("UploadUserId")
- .HasConstraintName("FK_AttachFile_UpdateUser")
- .OnDelete(DeleteBehavior.NoAction);
- b.Navigation("AppealRecord");
- b.Navigation("UploadUser");
- });
- modelBuilder.Entity("wispro.sp.entity.Customer", b =>
- {
- b.HasOne("wispro.sp.entity.Staff", "ResponseMan")
- .WithMany("Customers")
- .HasForeignKey("ResponseManId")
- .HasConstraintName("FK_Customer_Staff");
- b.Navigation("ResponseMan");
- });
- modelBuilder.Entity("wispro.sp.entity.DepartmentPosition", b =>
- {
- b.HasOne("wispro.sp.entity.Position", "Position")
- .WithMany()
- .HasForeignKey("PositionId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Staff", "Staff")
- .WithMany("Positions")
- .HasForeignKey("StaffId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Department", "department")
- .WithMany()
- .HasForeignKey("departmentId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("department");
- b.Navigation("Position");
- b.Navigation("Staff");
- });
- modelBuilder.Entity("wispro.sp.entity.InputField", b =>
- {
- b.HasOne("wispro.sp.entity.AppealType", "AppealType")
- .WithMany()
- .HasForeignKey("AppealTypeId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("AppealType");
- });
- modelBuilder.Entity("wispro.sp.entity.InputFieldValue", b =>
- {
- b.HasOne("wispro.sp.entity.AppealRecord", "AppealRecord")
- .WithMany()
- .HasForeignKey("AppealRecordId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.InputField", "InputField")
- .WithMany()
- .HasForeignKey("InputFieldId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("AppealRecord");
- b.Navigation("InputField");
- });
- modelBuilder.Entity("wispro.sp.entity.ItemStaff", b =>
- {
- b.HasOne("wispro.sp.entity.Staff", "DoPerson")
- .WithMany("ItemStaffs")
- .HasForeignKey("DoPersonId")
- .HasConstraintName("FK_ItemStaff_Staff")
- .IsRequired();
- b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
- .WithMany("ItemStaffs")
- .HasForeignKey("ItemId")
- .HasConstraintName("FK_ItemStaff_PerformanceItem")
- .IsRequired();
- b.Navigation("DoPerson");
- b.Navigation("Item");
- });
- modelBuilder.Entity("wispro.sp.entity.Message", b =>
- {
- b.HasOne("wispro.sp.entity.Staff", "From")
- .WithMany()
- .HasForeignKey("FromId")
- .HasConstraintName("FK_From_Staff")
- .IsRequired();
- b.Navigation("From");
- });
- modelBuilder.Entity("wispro.sp.entity.MessagePerformanceItem", b =>
- {
- b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
- .WithMany()
- .HasForeignKey("ItemId")
- .HasConstraintName("FK_MessagePerformanceItem_Item")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Message", "Message")
- .WithMany("RelatedItem")
- .HasForeignKey("MessageId")
- .HasConstraintName("FK_MessagePerformanceItem_Message")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("Item");
- b.Navigation("Message");
- });
- modelBuilder.Entity("wispro.sp.entity.MessageReadRecord", b =>
- {
- b.HasOne("wispro.sp.entity.Message", "Message")
- .WithMany()
- .HasForeignKey("MessageId")
- .HasConstraintName("FK_MessageReadRecord_Message")
- .IsRequired();
- b.HasOne("wispro.sp.entity.Message", null)
- .WithMany("To")
- .HasForeignKey("MessageId1");
- b.HasOne("wispro.sp.entity.Staff", "Staff")
- .WithMany()
- .HasForeignKey("StaffId")
- .HasConstraintName("FK_MessageReadRecord_Staff")
- .IsRequired();
- b.Navigation("Message");
- b.Navigation("Staff");
- });
- modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
- {
- b.HasOne("wispro.sp.entity.CalMonth", "CalMonth")
- .WithMany("PerformanceItems")
- .HasForeignKey("CalMonthId")
- .HasConstraintName("FK_PerformanceItem_CalMonth")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Customer", "Customer")
- .WithMany("PerformanceItems")
- .HasForeignKey("CustomerId")
- .HasConstraintName("FK_PerformanceItem_Customer");
- b.HasOne("wispro.sp.entity.Staff", "PreOastaff")
- .WithMany()
- .HasForeignKey("PreOastaffId")
- .HasConstraintName("FK_PerformanceItem_Staff");
- b.HasOne("wispro.sp.entity.Staff", "Reviewer")
- .WithMany("ReviewerItems")
- .HasForeignKey("ReviewerId")
- .HasConstraintName("FK_PerformanceItem_Reviewer");
- b.Navigation("CalMonth");
- b.Navigation("Customer");
- b.Navigation("PreOastaff");
- b.Navigation("Reviewer");
- });
- modelBuilder.Entity("wispro.sp.entity.SelectValue", b =>
- {
- b.HasOne("wispro.sp.entity.InputField", "InputField")
- .WithMany("SelectValues")
- .HasForeignKey("InputFieldId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("InputField");
- });
- modelBuilder.Entity("wispro.sp.entity.Staff", b =>
- {
- b.HasOne("wispro.sp.entity.StaffGrade", "StaffGrade")
- .WithMany("Staff")
- .HasForeignKey("StaffGradeId")
- .HasConstraintName("FK_Staff_StaffGrade");
- b.Navigation("StaffGrade");
- });
- modelBuilder.Entity("wispro.sp.entity.StaffStatistics", b =>
- {
- b.HasOne("wispro.sp.entity.CalMonth", "CalMonth")
- .WithMany()
- .HasForeignKey("CalMonthId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.Staff", "Staff")
- .WithMany()
- .HasForeignKey("StaffId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("CalMonth");
- b.Navigation("Staff");
- });
- modelBuilder.Entity("wispro.sp.entity.VerifyCoefficient", b =>
- {
- b.HasOne("wispro.sp.entity.StaffGrade", "Checker")
- .WithMany("VerifyCoefficientCheckers")
- .HasForeignKey("CheckerId")
- .HasConstraintName("FK_VerifyCoefficient_StaffGrade")
- .IsRequired();
- b.HasOne("wispro.sp.entity.StaffGrade", "DoPerson")
- .WithMany("VerifyCoefficientDoPeople")
- .HasForeignKey("DoPersonId")
- .HasConstraintName("FK_VerifyCoefficient_StaffGrade1")
- .IsRequired();
- b.Navigation("Checker");
- b.Navigation("DoPerson");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.Step", "step")
- .WithMany()
- .HasForeignKey("StepId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("step");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.InputValueSetting", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.InputValueSetting", "ParentSetting")
- .WithMany()
- .HasForeignKey("ParentSettingId");
- b.HasOne("wispro.sp.entity.workflowDefine.Action", "action")
- .WithMany("inputValuesSettings")
- .HasForeignKey("actionId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.Navigation("action");
- b.Navigation("ParentSetting");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Step", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.Workflow", "workflow")
- .WithMany()
- .HasForeignKey("workflowId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("workflow");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.TrasferCondition", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.Step", "Step")
- .WithMany()
- .HasForeignKey("StepId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.HasOne("wispro.sp.entity.workflowDefine.Step", "nextStep")
- .WithMany()
- .HasForeignKey("nextStepId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.Navigation("nextStep");
- b.Navigation("Step");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Workflow", b =>
- {
- b.HasOne("wispro.sp.entity.Staff", "CreateUser")
- .WithMany()
- .HasForeignKey("CreateUserId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.workflowDefine.Action", "InitAction")
- .WithMany()
- .HasForeignKey("InitActionId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.Navigation("CreateUser");
- b.Navigation("InitAction");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.InputValue", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.InputValueSetting", "valueSetting")
- .WithMany()
- .HasForeignKey("valueSettingId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.workflowInstance.WorkflowInstance", "workflowInstance")
- .WithMany()
- .HasForeignKey("workflowInstanceId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("valueSetting");
- b.Navigation("workflowInstance");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.StepInstance", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.Step", "Step")
- .WithMany()
- .HasForeignKey("stepId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.HasOne("wispro.sp.entity.workflowInstance.WorkflowInstance", "workflowInstance")
- .WithMany()
- .HasForeignKey("workflowInstanceId")
- .OnDelete(DeleteBehavior.NoAction)
- .IsRequired();
- b.Navigation("Step");
- b.Navigation("workflowInstance");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowInstance.WorkflowInstance", b =>
- {
- b.HasOne("wispro.sp.entity.workflowDefine.Workflow", "workflow")
- .WithMany()
- .HasForeignKey("workflowId")
- .OnDelete(DeleteBehavior.Cascade)
- .IsRequired();
- b.Navigation("workflow");
- });
- modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
- {
- b.Navigation("AttachFiles");
- });
- modelBuilder.Entity("wispro.sp.entity.CalMonth", b =>
- {
- b.Navigation("PerformanceItems");
- });
- modelBuilder.Entity("wispro.sp.entity.Customer", b =>
- {
- b.Navigation("PerformanceItems");
- });
- modelBuilder.Entity("wispro.sp.entity.InputField", b =>
- {
- b.Navigation("SelectValues");
- });
- modelBuilder.Entity("wispro.sp.entity.Message", b =>
- {
- b.Navigation("RelatedItem");
- b.Navigation("To");
- });
- modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
- {
- b.Navigation("ItemStaffs");
- });
- modelBuilder.Entity("wispro.sp.entity.Staff", b =>
- {
- b.Navigation("Customers");
- b.Navigation("ItemStaffs");
- b.Navigation("Positions");
- b.Navigation("ReviewerItems");
- });
- modelBuilder.Entity("wispro.sp.entity.StaffGrade", b =>
- {
- b.Navigation("Staff");
- b.Navigation("VerifyCoefficientCheckers");
- b.Navigation("VerifyCoefficientDoPeople");
- });
- modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
- {
- b.Navigation("inputValuesSettings");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|