spDbContextModelSnapshot.cs 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
  1. // <auto-generated />
  2. using System;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore.Infrastructure;
  5. using Microsoft.EntityFrameworkCore.Metadata;
  6. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  7. using wispro.sp.api;
  8. namespace wispro.sp.api.Migrations
  9. {
  10. [DbContext(typeof(spDbContext))]
  11. partial class spDbContextModelSnapshot : ModelSnapshot
  12. {
  13. protected override void BuildModel(ModelBuilder modelBuilder)
  14. {
  15. #pragma warning disable 612, 618
  16. modelBuilder
  17. .HasAnnotation("Relational:MaxIdentifierLength", 128)
  18. .HasAnnotation("ProductVersion", "5.0.9")
  19. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  20. modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
  21. {
  22. b.Property<int>("Id")
  23. .ValueGeneratedOnAdd()
  24. .HasColumnType("int")
  25. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  26. b.Property<DateTime>("CreateTime")
  27. .HasColumnType("datetime2");
  28. b.Property<int>("CreaterId")
  29. .HasColumnType("int");
  30. b.Property<int>("ItemId")
  31. .HasColumnType("int");
  32. b.Property<string>("Reason")
  33. .HasMaxLength(500)
  34. .HasColumnType("nvarchar(500)");
  35. b.Property<DateTime?>("ReviewTime")
  36. .HasColumnType("datetime2");
  37. b.Property<int?>("ReviewerId")
  38. .HasColumnType("int");
  39. b.Property<string>("ReviewerMemo")
  40. .HasColumnType("nvarchar(max)");
  41. b.Property<int>("State")
  42. .HasColumnType("int");
  43. b.Property<int>("TypeId")
  44. .HasColumnType("int");
  45. b.HasKey("Id");
  46. b.HasIndex("CreaterId");
  47. b.HasIndex("ItemId");
  48. b.HasIndex("ReviewerId");
  49. b.HasIndex("TypeId");
  50. b.ToTable("AppealRecord");
  51. });
  52. modelBuilder.Entity("wispro.sp.entity.AppealType", b =>
  53. {
  54. b.Property<int>("Id")
  55. .ValueGeneratedOnAdd()
  56. .HasColumnType("int")
  57. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  58. b.Property<string>("CanDoExpress")
  59. .HasMaxLength(500)
  60. .HasColumnType("nvarchar(500)");
  61. b.Property<string>("Name")
  62. .HasMaxLength(50)
  63. .HasColumnType("nvarchar(50)");
  64. b.Property<string>("ReviewerExpress")
  65. .HasMaxLength(500)
  66. .HasColumnType("nvarchar(500)");
  67. b.Property<int>("Type")
  68. .HasColumnType("int");
  69. b.HasKey("Id");
  70. b.ToTable("AppealType");
  71. b.HasData(
  72. new
  73. {
  74. Id = 1,
  75. CanDoExpress = "p.ItemStaffs.Count()>1",
  76. Name = "绩效点数分配比率",
  77. Type = 0
  78. },
  79. new
  80. {
  81. Id = 2,
  82. CanDoExpress = "p.DoItem==\"新申请\"",
  83. Name = "案件系数复核",
  84. ReviewerExpress = "p.Reviewer",
  85. Type = 0
  86. },
  87. new
  88. {
  89. Id = 3,
  90. CanDoExpress = "p.DoItem==\"新申请\"",
  91. Name = "处理事项系数复核",
  92. ReviewerExpress = "p.Reviewer",
  93. Type = 0
  94. },
  95. new
  96. {
  97. Id = 4,
  98. CanDoExpress = "",
  99. Name = "案件缺漏申诉",
  100. ReviewerExpress = "p.Reviewer",
  101. Type = 1
  102. },
  103. new
  104. {
  105. Id = 5,
  106. CanDoExpress = "p.isDanger()",
  107. Name = "案件严重超期说明",
  108. Type = 0
  109. },
  110. new
  111. {
  112. Id = 6,
  113. CanDoExpress = "p.DoItem==\"新申请\" || p.DoItem==\"翻译\"",
  114. Name = "按照翻译字数算绩效备注",
  115. Type = 0
  116. });
  117. });
  118. modelBuilder.Entity("wispro.sp.entity.AttachFile", b =>
  119. {
  120. b.Property<Guid>("Id")
  121. .ValueGeneratedOnAdd()
  122. .HasColumnType("uniqueidentifier");
  123. b.Property<int?>("AppealRecordId")
  124. .HasColumnType("int");
  125. b.Property<string>("Name")
  126. .HasMaxLength(200)
  127. .HasColumnType("nvarchar(200)");
  128. b.Property<string>("SavePath")
  129. .HasMaxLength(200)
  130. .HasColumnType("nvarchar(200)");
  131. b.Property<int?>("UploadUserId")
  132. .HasColumnType("int");
  133. b.HasKey("Id");
  134. b.HasIndex("AppealRecordId");
  135. b.HasIndex("UploadUserId");
  136. b.ToTable("AttachFile");
  137. });
  138. modelBuilder.Entity("wispro.sp.entity.BasePointRule", b =>
  139. {
  140. b.Property<int>("Id")
  141. .ValueGeneratedOnAdd()
  142. .HasColumnType("int")
  143. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  144. b.Property<string>("PointExpress")
  145. .HasMaxLength(100)
  146. .HasColumnType("nvarchar(100)");
  147. b.Property<int>("Priority")
  148. .HasColumnType("int");
  149. b.Property<string>("Rule")
  150. .HasMaxLength(1000)
  151. .HasColumnType("nvarchar(1000)");
  152. b.Property<string>("Type")
  153. .HasMaxLength(20)
  154. .HasColumnType("nvarchar(20)");
  155. b.HasKey("Id");
  156. b.ToTable("BasePointRule");
  157. b.HasData(
  158. new
  159. {
  160. Id = 1,
  161. PointExpress = "0",
  162. Priority = 136,
  163. Rule = "p.CaseNo.StartsWith(\"J\")",
  164. Type = "其它"
  165. },
  166. new
  167. {
  168. Id = 2,
  169. PointExpress = "0",
  170. Priority = 135,
  171. Rule = "p.AgentFeedbackMemo==\"已算绩效\"",
  172. Type = "其它"
  173. },
  174. new
  175. {
  176. Id = 3,
  177. PointExpress = "p.WordCount/1000*0.18",
  178. Priority = 134,
  179. Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"中-德\"",
  180. Type = "其它"
  181. },
  182. new
  183. {
  184. Id = 4,
  185. PointExpress = "p.WordCount/1000*0.16",
  186. Priority = 133,
  187. Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"中-英\"",
  188. Type = "其它"
  189. },
  190. new
  191. {
  192. Id = 5,
  193. PointExpress = "p.WordCount/1000*0.1",
  194. Priority = 132,
  195. Rule = "p.DoItem==\"翻译\" && p.AgentFeedbackMemo==\"英-中\"",
  196. Type = "其它"
  197. },
  198. new
  199. {
  200. Id = 6,
  201. PointExpress = "0.2",
  202. Priority = 131,
  203. Rule = "(p.DoItem==\"提交检索主题申明\" || p.DoItem==\"提交检索主题声明\") && p.CaseNo.StartsWith(\"PAEPO\")",
  204. Type = "其它"
  205. },
  206. new
  207. {
  208. Id = 7,
  209. PointExpress = "0",
  210. Priority = 130,
  211. Rule = "p.DoItem==\"请求优先审查\"",
  212. Type = "其它"
  213. },
  214. new
  215. {
  216. Id = 8,
  217. PointExpress = "0.2",
  218. Priority = 129,
  219. Rule = "p.ApplicationType==\"外观设计\" && p.DoItem==\"新申请\"",
  220. Type = "其它"
  221. },
  222. new
  223. {
  224. Id = 9,
  225. PointExpress = "0",
  226. Priority = 128,
  227. Rule = "p.DoItem==\"专利挖掘与布局\"",
  228. Type = "其它"
  229. },
  230. new
  231. {
  232. Id = 10,
  233. PointExpress = "0",
  234. Priority = 127,
  235. Rule = "p.DoItem==\"知识点总结\"",
  236. Type = "其它"
  237. },
  238. new
  239. {
  240. Id = 11,
  241. PointExpress = "0",
  242. Priority = 126,
  243. Rule = "p.DoItem==\"询问放弃或复审\"",
  244. Type = "其它"
  245. },
  246. new
  247. {
  248. Id = 12,
  249. PointExpress = "0",
  250. Priority = 125,
  251. Rule = "p.DoItem==\"申请时提交IDS\"",
  252. Type = "其它"
  253. },
  254. new
  255. {
  256. Id = 13,
  257. PointExpress = "0.1",
  258. Priority = 124,
  259. Rule = "p.DoItem==\"提交ids\" || p.DoItem==\"提交IDS\" ",
  260. Type = "其它"
  261. },
  262. new
  263. {
  264. Id = 14,
  265. PointExpress = "0",
  266. Priority = 123,
  267. Rule = "p.DoItem==\"技术确认\"",
  268. Type = "其它"
  269. },
  270. new
  271. {
  272. Id = 15,
  273. PointExpress = "0",
  274. Priority = 122,
  275. Rule = "p.DoItem==\"绘图\"",
  276. Type = "其它"
  277. },
  278. new
  279. {
  280. Id = 16,
  281. PointExpress = "0.2",
  282. Priority = 121,
  283. Rule = "p.DoItem==\"分案评估+分案\"",
  284. Type = "其它"
  285. },
  286. new
  287. {
  288. Id = 17,
  289. PointExpress = "0.1",
  290. Priority = 120,
  291. Rule = "p.DoItem==\"分案评估\"",
  292. Type = "其它"
  293. },
  294. new
  295. {
  296. Id = 18,
  297. PointExpress = "0.2",
  298. Priority = 119,
  299. Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PAUS\")",
  300. Type = "其它"
  301. },
  302. new
  303. {
  304. Id = 19,
  305. PointExpress = "0.2",
  306. Priority = 118,
  307. Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PAEPO\") ",
  308. Type = "其它"
  309. },
  310. new
  311. {
  312. Id = 20,
  313. PointExpress = "0",
  314. Priority = 117,
  315. Rule = "p.DoItem==\"电询\" && p.CaseNo.StartsWith(\"PACN\")",
  316. Type = "其它"
  317. },
  318. new
  319. {
  320. Id = 21,
  321. PointExpress = "0.1",
  322. Priority = 116,
  323. Rule = "p.DoItem==\"PPH\"",
  324. Type = "其它"
  325. },
  326. new
  327. {
  328. Id = 22,
  329. PointExpress = "0.2",
  330. Priority = 115,
  331. Rule = "p.DoItem==\"OA答辩校核\"",
  332. Type = "其它"
  333. },
  334. new
  335. {
  336. Id = 23,
  337. PointExpress = "0.2",
  338. Priority = 114,
  339. Rule = "p.DoItem==\"Election Action\"",
  340. Type = "其它"
  341. },
  342. new
  343. {
  344. Id = 24,
  345. PointExpress = "0.2",
  346. Priority = 113,
  347. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAUS\")",
  348. Type = "其它"
  349. },
  350. new
  351. {
  352. Id = 25,
  353. PointExpress = "0.2",
  354. Priority = 112,
  355. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAIN\")",
  356. Type = "其它"
  357. },
  358. new
  359. {
  360. Id = 26,
  361. PointExpress = "0.2",
  362. Priority = 111,
  363. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAGB\")",
  364. Type = "其它"
  365. },
  366. new
  367. {
  368. Id = 27,
  369. PointExpress = "0.2",
  370. Priority = 110,
  371. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAEPO\")",
  372. Type = "其它"
  373. },
  374. new
  375. {
  376. Id = 28,
  377. PointExpress = "0.2",
  378. Priority = 109,
  379. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PADE\")",
  380. Type = "其它"
  381. },
  382. new
  383. {
  384. Id = 29,
  385. PointExpress = "0",
  386. Priority = 108,
  387. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"WOCN\")",
  388. Type = "其它"
  389. },
  390. new
  391. {
  392. Id = 30,
  393. PointExpress = "0",
  394. Priority = 107,
  395. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PCTCN\")",
  396. Type = "其它"
  397. },
  398. new
  399. {
  400. Id = 31,
  401. PointExpress = "0",
  402. Priority = 106,
  403. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PACN\")",
  404. Type = "其它"
  405. },
  406. new
  407. {
  408. Id = 32,
  409. PointExpress = "0.2",
  410. Priority = 105,
  411. Rule = "p.DoItem.Contains(\"补正\") && p.CaseNo.StartsWith(\"PAAU\")",
  412. Type = "其它"
  413. },
  414. new
  415. {
  416. Id = 33,
  417. PointExpress = "0.2",
  418. Priority = 104,
  419. Rule = "p.AgentFeedbackMemo==\"检索结案\"",
  420. Type = "其它"
  421. },
  422. new
  423. {
  424. Id = 34,
  425. PointExpress = "0",
  426. Priority = 103,
  427. Rule = "p.DoItem==\"内部检索\"",
  428. Type = "其它"
  429. },
  430. new
  431. {
  432. Id = 35,
  433. PointExpress = "0.2",
  434. Priority = 102,
  435. Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"外-内\"",
  436. Type = "其它"
  437. },
  438. new
  439. {
  440. Id = 36,
  441. PointExpress = "0.3",
  442. Priority = 101,
  443. Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"内-外\"",
  444. Type = "其它"
  445. },
  446. new
  447. {
  448. Id = 37,
  449. PointExpress = "0.5",
  450. Priority = 100,
  451. Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"外-内\"",
  452. Type = "其它"
  453. },
  454. new
  455. {
  456. Id = 38,
  457. PointExpress = "0.7",
  458. Priority = 99,
  459. Rule = "p.DoItem==\"翻译校核\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"内-外\"",
  460. Type = "其它"
  461. },
  462. new
  463. {
  464. Id = 39,
  465. PointExpress = "0.2",
  466. Priority = 98,
  467. Rule = "p.DoItem==\"发明一次OA授权\" && p.ApplicationType==\"发明\"",
  468. Type = "其它"
  469. },
  470. new
  471. {
  472. Id = 40,
  473. PointExpress = "0",
  474. Priority = 97,
  475. Rule = "p.DoItem==\"处理审查意见\" && p.AgentFeedbackMemo==\"客户不进行答辩\"",
  476. Type = "OA"
  477. },
  478. new
  479. {
  480. Id = 41,
  481. PointExpress = "0",
  482. Priority = 96,
  483. Rule = "p.DoItem==\"处理审查意见\" && p.AgentFeedbackMemo==\"电询/补正\"",
  484. Type = "OA"
  485. },
  486. new
  487. {
  488. Id = 42,
  489. PointExpress = "0",
  490. Priority = 95,
  491. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
  492. Type = "OA"
  493. },
  494. new
  495. {
  496. Id = 43,
  497. PointExpress = "0",
  498. Priority = 94,
  499. Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
  500. Type = "OA"
  501. },
  502. new
  503. {
  504. Id = 44,
  505. PointExpress = "0",
  506. Priority = 93,
  507. Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"不请款\"",
  508. Type = "OA"
  509. },
  510. new
  511. {
  512. Id = 45,
  513. PointExpress = "0.14",
  514. Priority = 92,
  515. Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"请款\"",
  516. Type = "OA"
  517. },
  518. new
  519. {
  520. Id = 46,
  521. PointExpress = "0.35",
  522. Priority = 91,
  523. Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"实用新型\" && p.AgentFeedbackMemo==\"请款\"",
  524. Type = "OA"
  525. },
  526. new
  527. {
  528. Id = 47,
  529. PointExpress = "0.21",
  530. Priority = 90,
  531. Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"非实质\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
  532. Type = "OA"
  533. },
  534. new
  535. {
  536. Id = 48,
  537. PointExpress = "0.35",
  538. Priority = 89,
  539. Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
  540. Type = "OA"
  541. },
  542. new
  543. {
  544. Id = 49,
  545. PointExpress = "0.14",
  546. Priority = 88,
  547. Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"形式\" && p.CaseStage==\"一通\" && p.AgentFeedbackMemo==\"请款\"",
  548. Type = "OA"
  549. },
  550. new
  551. {
  552. Id = 50,
  553. PointExpress = "0.14",
  554. Priority = 87,
  555. Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && p.CaseStage==\"二通\" && p.AgentFeedbackMemo==\"请款\"",
  556. Type = "OA"
  557. },
  558. new
  559. {
  560. Id = 51,
  561. PointExpress = "0",
  562. Priority = 86,
  563. Rule = "p.ApplicationType==\"实用新型\" && p.DoItemCoefficient==\"实质\" && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\" || p.CaseStage==\"六通\" || p.CaseStage==\"七通\" || p.CaseStage==\"八通\") ",
  564. Type = "OA"
  565. },
  566. new
  567. {
  568. Id = 52,
  569. PointExpress = "0.2",
  570. Priority = 85,
  571. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
  572. Type = "OA"
  573. },
  574. new
  575. {
  576. Id = 53,
  577. PointExpress = "0.5",
  578. Priority = 84,
  579. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
  580. Type = "OA"
  581. },
  582. new
  583. {
  584. Id = 54,
  585. PointExpress = "0.3",
  586. Priority = 83,
  587. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.AgentFeedbackMemo==\"外所/他人首次转入OA\"",
  588. Type = "OA"
  589. },
  590. new
  591. {
  592. Id = 55,
  593. PointExpress = "0",
  594. Priority = 82,
  595. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\")",
  596. Type = "OA"
  597. },
  598. new
  599. {
  600. Id = 56,
  601. PointExpress = "0",
  602. Priority = 81,
  603. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && (p.CaseStage==\"三通\" || p.CaseStage==\"四通\" || p.CaseStage==\"五通\")",
  604. Type = "OA"
  605. },
  606. new
  607. {
  608. Id = 57,
  609. PointExpress = "0.2",
  610. Priority = 80,
  611. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"二通\"",
  612. Type = "OA"
  613. },
  614. new
  615. {
  616. Id = 58,
  617. PointExpress = "0.2",
  618. Priority = 79,
  619. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"二通\"",
  620. Type = "OA"
  621. },
  622. new
  623. {
  624. Id = 59,
  625. PointExpress = "0.2",
  626. Priority = 78,
  627. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
  628. Type = "OA"
  629. },
  630. new
  631. {
  632. Id = 60,
  633. PointExpress = "0.5",
  634. Priority = 77,
  635. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
  636. Type = "OA"
  637. },
  638. new
  639. {
  640. Id = 61,
  641. PointExpress = "0.3",
  642. Priority = 76,
  643. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.CaseNo.StartsWith(\"PCTCN\") && p.CaseStage==\"一通\"",
  644. Type = "OA"
  645. },
  646. new
  647. {
  648. Id = 62,
  649. PointExpress = "0.2",
  650. Priority = 75,
  651. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
  652. Type = "OA"
  653. },
  654. new
  655. {
  656. Id = 63,
  657. PointExpress = "0.5",
  658. Priority = 74,
  659. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
  660. Type = "OA"
  661. },
  662. new
  663. {
  664. Id = 64,
  665. PointExpress = "0.3",
  666. Priority = 73,
  667. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"一通\"",
  668. Type = "OA"
  669. },
  670. new
  671. {
  672. Id = 65,
  673. PointExpress = "0.2",
  674. Priority = 72,
  675. Rule = "p.DoItem==\"意见陈述\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseStage==\"复审\"",
  676. Type = "OA"
  677. },
  678. new
  679. {
  680. Id = 66,
  681. PointExpress = "0.5",
  682. Priority = 71,
  683. Rule = "p.DoItem==\"请求复审\" && p.ApplicationType==\"发明\"",
  684. Type = "OA"
  685. },
  686. new
  687. {
  688. Id = 67,
  689. PointExpress = "0.1",
  690. Priority = 70,
  691. Rule = "p.AgentFeedbackMemo==\"涉外OA不答辩,发报导函结案\"",
  692. Type = "其它"
  693. },
  694. new
  695. {
  696. Id = 68,
  697. PointExpress = "0.8",
  698. Priority = 69,
  699. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"客户未提供答辩点,撰写英文报导函\"",
  700. Type = "OA"
  701. },
  702. new
  703. {
  704. Id = 69,
  705. PointExpress = "0.5",
  706. Priority = 68,
  707. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.AgentFeedbackMemo==\"客户提供答辩点,撰写英文报导函\"",
  708. Type = "OA"
  709. },
  710. new
  711. {
  712. Id = 70,
  713. PointExpress = "0.2",
  714. Priority = 67,
  715. Rule = "p.DoItem==\"申復\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PATW\")",
  716. Type = "OA"
  717. },
  718. new
  719. {
  720. Id = 71,
  721. PointExpress = "0.5",
  722. Priority = 66,
  723. Rule = "p.DoItem==\"申復\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PATW\")",
  724. Type = "OA"
  725. },
  726. new
  727. {
  728. Id = 72,
  729. PointExpress = "0.2",
  730. Priority = 65,
  731. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAIN\")",
  732. Type = "OA"
  733. },
  734. new
  735. {
  736. Id = 73,
  737. PointExpress = "0.2",
  738. Priority = 64,
  739. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAGB\")",
  740. Type = "OA"
  741. },
  742. new
  743. {
  744. Id = 74,
  745. PointExpress = "0.2",
  746. Priority = 63,
  747. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAEPO\")",
  748. Type = "OA"
  749. },
  750. new
  751. {
  752. Id = 75,
  753. PointExpress = "0.3",
  754. Priority = 62,
  755. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PADE\")",
  756. Type = "OA"
  757. },
  758. new
  759. {
  760. Id = 76,
  761. PointExpress = "0.2",
  762. Priority = 61,
  763. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAAU\")",
  764. Type = "OA"
  765. },
  766. new
  767. {
  768. Id = 77,
  769. PointExpress = "1.5",
  770. Priority = 60,
  771. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAIN\")",
  772. Type = "OA"
  773. },
  774. new
  775. {
  776. Id = 78,
  777. PointExpress = "1.5",
  778. Priority = 59,
  779. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAGB\")",
  780. Type = "OA"
  781. },
  782. new
  783. {
  784. Id = 79,
  785. PointExpress = "1.5",
  786. Priority = 58,
  787. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAEPO\")",
  788. Type = "OA"
  789. },
  790. new
  791. {
  792. Id = 80,
  793. PointExpress = "1.6",
  794. Priority = 57,
  795. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PADE\")",
  796. Type = "OA"
  797. },
  798. new
  799. {
  800. Id = 81,
  801. PointExpress = "1.5",
  802. Priority = 56,
  803. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAAU\")",
  804. Type = "OA"
  805. },
  806. new
  807. {
  808. Id = 82,
  809. PointExpress = "0.2",
  810. Priority = 55,
  811. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"形式\" && p.CaseNo.StartsWith(\"PAUS\")",
  812. Type = "OA"
  813. },
  814. new
  815. {
  816. Id = 83,
  817. PointExpress = "1.5",
  818. Priority = 54,
  819. Rule = "p.DoItem==\"处理审查意见\" && p.DoItemCoefficient==\"实质\" && p.CaseNo.StartsWith(\"PAUS\")",
  820. Type = "OA"
  821. },
  822. new
  823. {
  824. Id = 84,
  825. PointExpress = "1.5",
  826. Priority = 53,
  827. Rule = "p.DoItem==\"口审评估\" && p.DoItemCoefficient==\"实质\"",
  828. Type = "OA"
  829. },
  830. new
  831. {
  832. Id = 85,
  833. PointExpress = "0.2",
  834. Priority = 52,
  835. Rule = "p.DoItem==\"口审评估\" && p.DoItemCoefficient==\"形式\"",
  836. Type = "OA"
  837. },
  838. new
  839. {
  840. Id = 86,
  841. PointExpress = "0.2",
  842. Priority = 51,
  843. Rule = "p.DoItem==\"欧洲案答辩\" && p.DoItemCoefficient==\"形式\"",
  844. Type = "OA"
  845. },
  846. new
  847. {
  848. Id = 87,
  849. PointExpress = "1.5",
  850. Priority = 50,
  851. Rule = "p.DoItem==\"欧洲案答辩\" && p.DoItemCoefficient==\"实质\"",
  852. Type = "OA"
  853. },
  854. new
  855. {
  856. Id = 88,
  857. PointExpress = "0.2",
  858. Priority = 49,
  859. Rule = "p.DoItem==\"RCE\" && p.DoItemCoefficient==\"形式\"",
  860. Type = "OA"
  861. },
  862. new
  863. {
  864. Id = 89,
  865. PointExpress = "1.5",
  866. Priority = 48,
  867. Rule = "p.DoItem==\"RCE\" && p.DoItemCoefficient==\"实质\"",
  868. Type = "OA"
  869. },
  870. new
  871. {
  872. Id = 90,
  873. PointExpress = "0.2",
  874. Priority = 47,
  875. Rule = "p.DoItem==\"Non Final Action\" && p.DoItemCoefficient==\"形式\"",
  876. Type = "OA"
  877. },
  878. new
  879. {
  880. Id = 91,
  881. PointExpress = "1.5",
  882. Priority = 46,
  883. Rule = "p.DoItem==\"Non Final Action\" && p.DoItemCoefficient==\"实质\"",
  884. Type = "OA"
  885. },
  886. new
  887. {
  888. Id = 92,
  889. PointExpress = "0.1",
  890. Priority = 45,
  891. Rule = "p.DoItem==\"form 3-8(2)\" || p.DoItem==\"Form 3-8(2)\" || p.DoItem==\"Form 3-8(2)\"",
  892. Type = "OA"
  893. },
  894. new
  895. {
  896. Id = 93,
  897. PointExpress = "0.1",
  898. Priority = 44,
  899. Rule = "p.DoItem==\"form 3\"",
  900. Type = "OA"
  901. },
  902. new
  903. {
  904. Id = 94,
  905. PointExpress = "0.2",
  906. Priority = 43,
  907. Rule = "p.DoItem==\"Final Action\" && p.DoItemCoefficient==\"形式\"",
  908. Type = "OA"
  909. },
  910. new
  911. {
  912. Id = 95,
  913. PointExpress = "1.5",
  914. Priority = 42,
  915. Rule = "p.DoItem==\"Final Action\" && p.DoItemCoefficient==\"实质\"",
  916. Type = "OA"
  917. },
  918. new
  919. {
  920. Id = 96,
  921. PointExpress = "0.2",
  922. Priority = 41,
  923. Rule = "p.DoItem==\"Advisory Action\" && p.DoItemCoefficient==\"形式\"",
  924. Type = "OA"
  925. },
  926. new
  927. {
  928. Id = 97,
  929. PointExpress = "1.5",
  930. Priority = 40,
  931. Rule = "p.DoItem==\"Advisory Action\" && p.DoItemCoefficient==\"实质\"",
  932. Type = "OA"
  933. },
  934. new
  935. {
  936. Id = 98,
  937. PointExpress = "p.WordCount/1000*0.18",
  938. Priority = 39,
  939. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"中-德\" && p.WordCount !=null",
  940. Type = "其它"
  941. },
  942. new
  943. {
  944. Id = 99,
  945. PointExpress = "p.WordCount/1000*0.16",
  946. Priority = 38,
  947. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"中-英\" && p.WordCount !=null",
  948. Type = "其它"
  949. },
  950. new
  951. {
  952. Id = 100,
  953. PointExpress = "p.WordCount/1000*0.1",
  954. Priority = 37,
  955. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"英-中\" && p.WordCount !=null",
  956. Type = "其它"
  957. },
  958. new
  959. {
  960. Id = 101,
  961. PointExpress = "0",
  962. Priority = 36,
  963. Rule = "(p.ApplicationType==\"实用新型\" || p.ApplicationType==\"发明\") && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"客户不进行答辩\"",
  964. Type = "其它"
  965. },
  966. new
  967. {
  968. Id = 102,
  969. PointExpress = "1.26",
  970. Priority = 35,
  971. Rule = "p.CaseNo.StartsWith(\"PAUS\") && p.AgentFeedbackMemo==\"发文后客户原因取消申请,系统结案\"",
  972. Type = "新申请"
  973. },
  974. new
  975. {
  976. Id = 103,
  977. PointExpress = "1.33",
  978. Priority = 34,
  979. Rule = "p.CaseNo.StartsWith(\"PADE\") && p.AgentFeedbackMemo==\"发文后客户原因取消申请,系统结案\"",
  980. Type = "新申请"
  981. },
  982. new
  983. {
  984. Id = 104,
  985. PointExpress = "0.7",
  986. Priority = 33,
  987. Rule = "p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"发文后客户取消申请\"",
  988. Type = "新申请"
  989. },
  990. new
  991. {
  992. Id = 105,
  993. PointExpress = "0.49",
  994. Priority = 32,
  995. Rule = "p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"发文后客户取消申请\"",
  996. Type = "新申请"
  997. },
  998. new
  999. {
  1000. Id = 106,
  1001. PointExpress = "0",
  1002. Priority = 31,
  1003. Rule = "p.AgentFeedbackMemo==\"撰写中客户取消申请\"",
  1004. Type = "其它"
  1005. },
  1006. new
  1007. {
  1008. Id = 107,
  1009. PointExpress = "1.5",
  1010. Priority = 30,
  1011. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PCTCN\") && p.AgentFeedbackMemo==\"外到内首次申请\"",
  1012. Type = "新申请"
  1013. },
  1014. new
  1015. {
  1016. Id = 108,
  1017. PointExpress = "0.1",
  1018. Priority = 29,
  1019. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"转格式\"",
  1020. Type = "其它"
  1021. },
  1022. new
  1023. {
  1024. Id = 109,
  1025. PointExpress = "1.5",
  1026. Priority = 28,
  1027. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"外-内首次申请\"",
  1028. Type = "新申请"
  1029. },
  1030. new
  1031. {
  1032. Id = 110,
  1033. PointExpress = "1",
  1034. Priority = 27,
  1035. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"首次中文案\"",
  1036. Type = "新申请"
  1037. },
  1038. new
  1039. {
  1040. Id = 111,
  1041. PointExpress = "0.7",
  1042. Priority = 26,
  1043. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"涉外实质改权\"",
  1044. Type = "新申请"
  1045. },
  1046. new
  1047. {
  1048. Id = 112,
  1049. PointExpress = "0.5",
  1050. Priority = 25,
  1051. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"改权+改说明书\"",
  1052. Type = "其它"
  1053. },
  1054. new
  1055. {
  1056. Id = 113,
  1057. PointExpress = "0.3",
  1058. Priority = 24,
  1059. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"改权\"",
  1060. Type = "其它"
  1061. },
  1062. new
  1063. {
  1064. Id = 114,
  1065. PointExpress = "1.8",
  1066. Priority = 23,
  1067. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"PCT首次英文案\"",
  1068. Type = "新申请"
  1069. },
  1070. new
  1071. {
  1072. Id = 115,
  1073. PointExpress = "0.2",
  1074. Priority = 22,
  1075. Rule = "p.AgentFeedbackMemo==\"我方转格式、复核\"",
  1076. Type = "其它"
  1077. },
  1078. new
  1079. {
  1080. Id = 116,
  1081. PointExpress = "0",
  1082. Priority = 21,
  1083. Rule = "p.AgentFeedbackMemo==\"我方代交\"",
  1084. Type = "其它"
  1085. },
  1086. new
  1087. {
  1088. Id = 117,
  1089. PointExpress = "0.5",
  1090. Priority = 20,
  1091. Rule = "p.CaseNo.StartsWith(\"PAUS\") && (p.CaseNo.EndsWith(\"-同套\") || p.CaseNo.EndsWith(\"CA\") || p.CaseNo.EndsWith(\"CIP\") || p.CaseNo.EndsWith(\"分案\")) ",
  1092. Type = "其它"
  1093. },
  1094. new
  1095. {
  1096. Id = 118,
  1097. PointExpress = "0.2",
  1098. Priority = 19,
  1099. 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==\"同套\"",
  1100. Type = "其它"
  1101. },
  1102. new
  1103. {
  1104. Id = 119,
  1105. PointExpress = "0.3",
  1106. Priority = 18,
  1107. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-分案\")",
  1108. Type = "其它"
  1109. },
  1110. new
  1111. {
  1112. Id = 120,
  1113. PointExpress = "1.8",
  1114. Priority = 17,
  1115. Rule = "p.DoItem==\"新申请\" && p.AgentFeedbackMemo==\"欧洲案首次\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAEPO\")",
  1116. Type = "新申请"
  1117. },
  1118. new
  1119. {
  1120. Id = 121,
  1121. PointExpress = "0.2",
  1122. Priority = 16,
  1123. Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"大陆案转台湾案\"",
  1124. Type = "其它"
  1125. },
  1126. new
  1127. {
  1128. Id = 122,
  1129. PointExpress = "1",
  1130. Priority = 15,
  1131. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
  1132. Type = "新申请"
  1133. },
  1134. new
  1135. {
  1136. Id = 123,
  1137. PointExpress = "0.2",
  1138. Priority = 14,
  1139. Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"台湾案转大陆案\"",
  1140. Type = "其它"
  1141. },
  1142. new
  1143. {
  1144. Id = 124,
  1145. PointExpress = "0.1",
  1146. Priority = 13,
  1147. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
  1148. Type = "其它"
  1149. },
  1150. new
  1151. {
  1152. Id = 125,
  1153. PointExpress = "0.7",
  1154. Priority = 12,
  1155. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
  1156. Type = "新申请"
  1157. },
  1158. new
  1159. {
  1160. Id = 126,
  1161. PointExpress = "0.1",
  1162. Priority = 11,
  1163. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PATW\") && p.AgentFeedbackMemo==\"同套大陆+台湾\"",
  1164. Type = "其它"
  1165. },
  1166. new
  1167. {
  1168. Id = 127,
  1169. PointExpress = "1.7",
  1170. Priority = 10,
  1171. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAUS\") && (p.Customer!=null && p.Customer.Name.Contains(\"OPPO\"))",
  1172. Type = "新申请"
  1173. },
  1174. new
  1175. {
  1176. Id = 128,
  1177. PointExpress = "1.8",
  1178. Priority = 9,
  1179. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAUS\")",
  1180. Type = "新申请"
  1181. },
  1182. new
  1183. {
  1184. Id = 129,
  1185. PointExpress = "1.8",
  1186. Priority = 8,
  1187. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAGB\")",
  1188. Type = "新申请"
  1189. },
  1190. new
  1191. {
  1192. Id = 130,
  1193. PointExpress = "0.2",
  1194. Priority = 7,
  1195. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PAEPO\")",
  1196. Type = "其它"
  1197. },
  1198. new
  1199. {
  1200. Id = 131,
  1201. PointExpress = "1.9",
  1202. Priority = 6,
  1203. Rule = "p.DoItem==\"新申请\" && p.CaseNo.StartsWith(\"PADE\")",
  1204. Type = "新申请"
  1205. },
  1206. new
  1207. {
  1208. Id = 132,
  1209. PointExpress = "0.1",
  1210. Priority = 5,
  1211. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-TS\")",
  1212. Type = "其它"
  1213. },
  1214. new
  1215. {
  1216. Id = 133,
  1217. PointExpress = "1",
  1218. Priority = 4,
  1219. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\") && (p.Customer!=null && p.Customer.Name.Contains(\"OPPO\"))",
  1220. Type = "新申请"
  1221. },
  1222. new
  1223. {
  1224. Id = 134,
  1225. PointExpress = "0.7",
  1226. Priority = 3,
  1227. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"实用新型\" && p.CaseNo.StartsWith(\"PACN\")",
  1228. Type = "新申请"
  1229. },
  1230. new
  1231. {
  1232. Id = 135,
  1233. PointExpress = "1",
  1234. Priority = 2,
  1235. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\") && p.CaseNo.EndsWith(\"-TS\")",
  1236. Type = "新申请"
  1237. },
  1238. new
  1239. {
  1240. Id = 136,
  1241. PointExpress = "1",
  1242. Priority = 1,
  1243. Rule = "p.DoItem==\"新申请\" && p.ApplicationType==\"发明\" && p.CaseNo.StartsWith(\"PACN\")",
  1244. Type = "新申请"
  1245. },
  1246. new
  1247. {
  1248. Id = 137,
  1249. PointExpress = "0",
  1250. Priority = 250,
  1251. Rule = "p.CaseNo.StartsWith(\"S\")",
  1252. Type = "专案"
  1253. },
  1254. new
  1255. {
  1256. Id = 138,
  1257. PointExpress = "0.2",
  1258. Priority = 85,
  1259. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"形式\" && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
  1260. Type = "OA"
  1261. },
  1262. new
  1263. {
  1264. Id = 139,
  1265. PointExpress = "0.5",
  1266. Priority = 84,
  1267. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"实质\" && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
  1268. Type = "OA"
  1269. },
  1270. new
  1271. {
  1272. Id = 140,
  1273. PointExpress = "0.3",
  1274. Priority = 83,
  1275. Rule = "p.DoItem==\"处理审查意见\" && p.ApplicationType==\"发明\" && p.DoItemCoefficient==\"非实质\"  && (p.PreOastaffId != null && p.ItemStaffs.Where<ItemStaff>(s => s.DoPersonId == p.PreOastaffId).Count() == 0)",
  1276. Type = "OA"
  1277. });
  1278. });
  1279. modelBuilder.Entity("wispro.sp.entity.CalMonth", b =>
  1280. {
  1281. b.Property<int>("Id")
  1282. .ValueGeneratedOnAdd()
  1283. .HasColumnType("int")
  1284. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1285. b.Property<int>("Month")
  1286. .HasColumnType("int")
  1287. .HasColumnName("month");
  1288. b.Property<int>("Status")
  1289. .HasColumnType("int")
  1290. .HasColumnName("status");
  1291. b.Property<int>("Year")
  1292. .HasColumnType("int")
  1293. .HasColumnName("year");
  1294. b.HasKey("Id");
  1295. b.ToTable("CalMonth");
  1296. });
  1297. modelBuilder.Entity("wispro.sp.entity.CaseCeoffcient", b =>
  1298. {
  1299. b.Property<string>("Ceoffcient")
  1300. .HasColumnType("nvarchar(450)");
  1301. b.Property<double>("Value")
  1302. .HasColumnType("float");
  1303. b.HasKey("Ceoffcient");
  1304. b.ToTable("CaseCeofficient");
  1305. b.HasData(
  1306. new
  1307. {
  1308. Ceoffcient = "S",
  1309. Value = 2.5
  1310. },
  1311. new
  1312. {
  1313. Ceoffcient = "A",
  1314. Value = 1.5
  1315. },
  1316. new
  1317. {
  1318. Ceoffcient = "B",
  1319. Value = 1.0
  1320. },
  1321. new
  1322. {
  1323. Ceoffcient = "C",
  1324. Value = 0.69999999999999996
  1325. },
  1326. new
  1327. {
  1328. Ceoffcient = "D",
  1329. Value = 0.40000000000000002
  1330. });
  1331. });
  1332. modelBuilder.Entity("wispro.sp.entity.Customer", b =>
  1333. {
  1334. b.Property<int>("Id")
  1335. .ValueGeneratedOnAdd()
  1336. .HasColumnType("int")
  1337. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1338. b.Property<string>("Address")
  1339. .HasMaxLength(500)
  1340. .HasColumnType("nvarchar(500)");
  1341. b.Property<string>("ContactMan")
  1342. .HasMaxLength(50)
  1343. .HasColumnType("nvarchar(50)");
  1344. b.Property<string>("Name")
  1345. .IsRequired()
  1346. .HasMaxLength(200)
  1347. .HasColumnType("nvarchar(200)");
  1348. b.Property<string>("Phone")
  1349. .HasMaxLength(50)
  1350. .HasColumnType("nvarchar(50)");
  1351. b.Property<int?>("ResponseManId")
  1352. .HasColumnType("int");
  1353. b.HasKey("Id");
  1354. b.HasIndex("ResponseManId");
  1355. b.ToTable("Customer");
  1356. });
  1357. modelBuilder.Entity("wispro.sp.entity.Department", b =>
  1358. {
  1359. b.Property<int>("Id")
  1360. .ValueGeneratedOnAdd()
  1361. .HasColumnType("int")
  1362. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1363. b.Property<string>("Memo")
  1364. .HasColumnType("nvarchar(max)");
  1365. b.Property<string>("Name")
  1366. .HasColumnType("nvarchar(max)");
  1367. b.Property<string>("ancestors")
  1368. .HasColumnType("nvarchar(max)");
  1369. b.Property<int?>("order_num")
  1370. .HasColumnType("int");
  1371. b.Property<int?>("parentId")
  1372. .HasColumnType("int");
  1373. b.HasKey("Id");
  1374. b.ToTable("Department");
  1375. });
  1376. modelBuilder.Entity("wispro.sp.entity.DepartmentPosition", b =>
  1377. {
  1378. b.Property<int>("Id")
  1379. .ValueGeneratedOnAdd()
  1380. .HasColumnType("int")
  1381. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1382. b.Property<int>("PositionId")
  1383. .HasColumnType("int");
  1384. b.Property<int>("StaffId")
  1385. .HasColumnType("int");
  1386. b.Property<int>("departmentId")
  1387. .HasColumnType("int");
  1388. b.HasKey("Id");
  1389. b.HasIndex("PositionId");
  1390. b.HasIndex("StaffId");
  1391. b.HasIndex("departmentId");
  1392. b.ToTable("DepartmentPosition");
  1393. });
  1394. modelBuilder.Entity("wispro.sp.entity.InputField", b =>
  1395. {
  1396. b.Property<int>("Id")
  1397. .ValueGeneratedOnAdd()
  1398. .HasColumnType("int")
  1399. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1400. b.Property<int>("AppealState")
  1401. .HasColumnType("int");
  1402. b.Property<int>("AppealTypeId")
  1403. .HasColumnType("int");
  1404. b.Property<bool>("CanMuliSelect")
  1405. .HasColumnType("bit");
  1406. b.Property<string>("FieldName")
  1407. .HasMaxLength(50)
  1408. .HasColumnType("nvarchar(50)");
  1409. b.Property<string>("FieldType")
  1410. .HasMaxLength(50)
  1411. .HasColumnType("nvarchar(50)");
  1412. b.Property<string>("MapObjectField")
  1413. .HasMaxLength(50)
  1414. .HasColumnType("nvarchar(50)");
  1415. b.Property<string>("MapObjectFieldLabel")
  1416. .HasColumnType("nvarchar(max)");
  1417. b.Property<string>("MapSaveCondition")
  1418. .HasColumnType("nvarchar(max)");
  1419. b.Property<int?>("MaxSize")
  1420. .HasColumnType("int");
  1421. b.HasKey("Id");
  1422. b.HasIndex("AppealTypeId");
  1423. b.ToTable("InputField");
  1424. b.HasData(
  1425. new
  1426. {
  1427. Id = 1,
  1428. AppealState = 0,
  1429. AppealTypeId = 1,
  1430. CanMuliSelect = false,
  1431. FieldName = "分配比率",
  1432. FieldType = "System.Double",
  1433. MapObjectField = "ItemStaffs.PerformancePoint",
  1434. MapObjectFieldLabel = "ItemStaffs.DoPerson.Name"
  1435. },
  1436. new
  1437. {
  1438. Id = 3,
  1439. AppealState = 0,
  1440. AppealTypeId = 1,
  1441. CanMuliSelect = false,
  1442. FieldName = "原因",
  1443. FieldType = "System.String"
  1444. },
  1445. new
  1446. {
  1447. Id = 4,
  1448. AppealState = 1,
  1449. AppealTypeId = 1,
  1450. CanMuliSelect = false,
  1451. FieldName = "备注",
  1452. FieldType = "System.String"
  1453. },
  1454. new
  1455. {
  1456. Id = 5,
  1457. AppealState = 1,
  1458. AppealTypeId = 1,
  1459. CanMuliSelect = false,
  1460. FieldName = "审核意见",
  1461. FieldType = "System.String"
  1462. },
  1463. new
  1464. {
  1465. Id = 6,
  1466. AppealState = 0,
  1467. AppealTypeId = 2,
  1468. CanMuliSelect = false,
  1469. FieldName = "案件系数",
  1470. FieldType = "System.String",
  1471. MapObjectField = "CaseCoefficient"
  1472. },
  1473. new
  1474. {
  1475. Id = 9,
  1476. AppealState = 1,
  1477. AppealTypeId = 2,
  1478. CanMuliSelect = false,
  1479. FieldName = "备注",
  1480. FieldType = "System.String"
  1481. },
  1482. new
  1483. {
  1484. Id = 10,
  1485. AppealState = 1,
  1486. AppealTypeId = 2,
  1487. CanMuliSelect = false,
  1488. FieldName = "审核意见",
  1489. FieldType = "System.String"
  1490. },
  1491. new
  1492. {
  1493. Id = 11,
  1494. AppealState = 0,
  1495. AppealTypeId = 3,
  1496. CanMuliSelect = false,
  1497. FieldName = "处理事项系数",
  1498. FieldType = "System.String",
  1499. MapObjectField = "DoItemCoefficient"
  1500. },
  1501. new
  1502. {
  1503. Id = 12,
  1504. AppealState = 1,
  1505. AppealTypeId = 3,
  1506. CanMuliSelect = false,
  1507. FieldName = "备注",
  1508. FieldType = "System.String"
  1509. },
  1510. new
  1511. {
  1512. Id = 13,
  1513. AppealState = 1,
  1514. AppealTypeId = 3,
  1515. CanMuliSelect = false,
  1516. FieldName = "审核意见",
  1517. FieldType = "System.String"
  1518. },
  1519. new
  1520. {
  1521. Id = 14,
  1522. AppealState = 0,
  1523. AppealTypeId = 4,
  1524. CanMuliSelect = false,
  1525. FieldName = "我方文号",
  1526. FieldType = "System.String"
  1527. },
  1528. new
  1529. {
  1530. Id = 15,
  1531. AppealState = 0,
  1532. AppealTypeId = 4,
  1533. CanMuliSelect = false,
  1534. FieldName = "处理事项",
  1535. FieldType = "System.String"
  1536. },
  1537. new
  1538. {
  1539. Id = 16,
  1540. AppealState = 1,
  1541. AppealTypeId = 4,
  1542. CanMuliSelect = false,
  1543. FieldName = "备注",
  1544. FieldType = "System.String"
  1545. },
  1546. new
  1547. {
  1548. Id = 17,
  1549. AppealState = 1,
  1550. AppealTypeId = 4,
  1551. CanMuliSelect = false,
  1552. FieldName = "审核意见",
  1553. FieldType = "System.String"
  1554. },
  1555. new
  1556. {
  1557. Id = 18,
  1558. AppealState = 0,
  1559. AppealTypeId = 5,
  1560. CanMuliSelect = false,
  1561. FieldName = "超期说明",
  1562. FieldType = "System.String",
  1563. MapObjectField = "OverDueMemo"
  1564. },
  1565. new
  1566. {
  1567. Id = 21,
  1568. AppealState = 1,
  1569. AppealTypeId = 5,
  1570. CanMuliSelect = false,
  1571. FieldName = "审核意见",
  1572. FieldType = "System.String"
  1573. },
  1574. new
  1575. {
  1576. Id = 22,
  1577. AppealState = 1,
  1578. AppealTypeId = 5,
  1579. CanMuliSelect = false,
  1580. FieldName = "备注",
  1581. FieldType = "System.String"
  1582. },
  1583. new
  1584. {
  1585. Id = 19,
  1586. AppealState = 0,
  1587. AppealTypeId = 6,
  1588. CanMuliSelect = false,
  1589. FieldName = "翻译类型",
  1590. FieldType = "System.String",
  1591. MapObjectField = "AgentFeedbackMemo"
  1592. },
  1593. new
  1594. {
  1595. Id = 20,
  1596. AppealState = 0,
  1597. AppealTypeId = 6,
  1598. CanMuliSelect = false,
  1599. FieldName = "翻译字数",
  1600. FieldType = "System.Int32",
  1601. MapObjectField = "WordCount"
  1602. },
  1603. new
  1604. {
  1605. Id = 23,
  1606. AppealState = 1,
  1607. AppealTypeId = 6,
  1608. CanMuliSelect = false,
  1609. FieldName = "审核意见",
  1610. FieldType = "System.Int32"
  1611. },
  1612. new
  1613. {
  1614. Id = 24,
  1615. AppealState = 1,
  1616. AppealTypeId = 6,
  1617. CanMuliSelect = false,
  1618. FieldName = "翻译字数",
  1619. FieldType = "System.Int32",
  1620. MapObjectField = "WordCount"
  1621. });
  1622. });
  1623. modelBuilder.Entity("wispro.sp.entity.InputFieldValue", b =>
  1624. {
  1625. b.Property<int>("Id")
  1626. .ValueGeneratedOnAdd()
  1627. .HasColumnType("int")
  1628. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1629. b.Property<int>("AppealRecordId")
  1630. .HasColumnType("int");
  1631. b.Property<int>("InputFieldId")
  1632. .HasColumnType("int");
  1633. b.Property<string>("Label")
  1634. .HasColumnType("nvarchar(max)");
  1635. b.Property<string>("Value")
  1636. .HasMaxLength(500)
  1637. .HasColumnType("nvarchar(500)");
  1638. b.Property<string>("mapExpress")
  1639. .HasColumnType("nvarchar(max)");
  1640. b.HasKey("Id");
  1641. b.HasIndex("AppealRecordId");
  1642. b.HasIndex("InputFieldId");
  1643. b.ToTable("InputFieldValue");
  1644. });
  1645. modelBuilder.Entity("wispro.sp.entity.ItemStaff", b =>
  1646. {
  1647. b.Property<int>("ItemId")
  1648. .HasColumnType("int");
  1649. b.Property<int>("DoPersonId")
  1650. .HasColumnType("int");
  1651. b.Property<double?>("PerformancePoint")
  1652. .HasColumnType("float");
  1653. b.HasKey("ItemId", "DoPersonId");
  1654. b.HasIndex("DoPersonId");
  1655. b.ToTable("ItemStaff");
  1656. });
  1657. modelBuilder.Entity("wispro.sp.entity.Message", b =>
  1658. {
  1659. b.Property<Guid>("Id")
  1660. .ValueGeneratedOnAdd()
  1661. .HasColumnType("uniqueidentifier");
  1662. b.Property<int>("FromId")
  1663. .HasColumnType("int");
  1664. b.Property<string>("MessageInfo")
  1665. .HasMaxLength(500)
  1666. .HasColumnType("nvarchar(500)");
  1667. b.Property<int>("Type")
  1668. .HasColumnType("int");
  1669. b.HasKey("Id");
  1670. b.HasIndex("FromId");
  1671. b.ToTable("Message");
  1672. });
  1673. modelBuilder.Entity("wispro.sp.entity.MessagePerformanceItem", b =>
  1674. {
  1675. b.Property<int>("ItemId")
  1676. .HasColumnType("int");
  1677. b.Property<Guid>("MessageId")
  1678. .HasColumnType("uniqueidentifier");
  1679. b.HasKey("ItemId", "MessageId");
  1680. b.HasIndex("MessageId");
  1681. b.ToTable("MessagePerformanceItems");
  1682. });
  1683. modelBuilder.Entity("wispro.sp.entity.MessageReadRecord", b =>
  1684. {
  1685. b.Property<Guid>("MessageId")
  1686. .HasColumnType("uniqueidentifier");
  1687. b.Property<int>("StaffId")
  1688. .HasColumnType("int");
  1689. b.Property<Guid?>("MessageId1")
  1690. .HasColumnType("uniqueidentifier");
  1691. b.Property<bool>("isReaded")
  1692. .HasColumnType("bit");
  1693. b.HasKey("MessageId", "StaffId");
  1694. b.HasIndex("MessageId1");
  1695. b.HasIndex("StaffId");
  1696. b.ToTable("MessageReadRecord");
  1697. });
  1698. modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
  1699. {
  1700. b.Property<int>("Id")
  1701. .ValueGeneratedOnAdd()
  1702. .HasColumnType("int")
  1703. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1704. b.Property<string>("AgentFeedbackMemo")
  1705. .HasColumnType("nvarchar(max)");
  1706. b.Property<string>("ApplicationName")
  1707. .HasMaxLength(200)
  1708. .HasColumnType("nvarchar(200)");
  1709. b.Property<string>("ApplicationType")
  1710. .HasMaxLength(50)
  1711. .HasColumnType("nvarchar(50)");
  1712. b.Property<decimal?>("BasePoint")
  1713. .HasColumnType("numeric(18,2)");
  1714. b.Property<string>("BusinessType")
  1715. .HasMaxLength(50)
  1716. .HasColumnType("nvarchar(50)");
  1717. b.Property<int>("CalMonthId")
  1718. .HasColumnType("int");
  1719. b.Property<string>("CaseCoefficient")
  1720. .HasMaxLength(10)
  1721. .HasColumnType("nvarchar(10)");
  1722. b.Property<string>("CaseMemo")
  1723. .HasColumnType("nvarchar(max)");
  1724. b.Property<string>("CaseName")
  1725. .HasMaxLength(500)
  1726. .HasColumnType("nvarchar(500)");
  1727. b.Property<string>("CaseNo")
  1728. .HasMaxLength(50)
  1729. .HasColumnType("nvarchar(50)");
  1730. b.Property<string>("CaseStage")
  1731. .HasMaxLength(50)
  1732. .HasColumnType("nvarchar(50)");
  1733. b.Property<string>("CaseState")
  1734. .HasMaxLength(50)
  1735. .HasColumnType("nvarchar(50)");
  1736. b.Property<string>("CaseType")
  1737. .HasMaxLength(50)
  1738. .HasColumnType("nvarchar(50)");
  1739. b.Property<int?>("CustomerId")
  1740. .HasColumnType("int");
  1741. b.Property<DateTime?>("CustomerLimitDate")
  1742. .HasColumnType("date");
  1743. b.Property<string>("DoItem")
  1744. .HasMaxLength(50)
  1745. .HasColumnType("nvarchar(50)");
  1746. b.Property<string>("DoItemCoefficient")
  1747. .HasMaxLength(50)
  1748. .HasColumnType("nvarchar(50)");
  1749. b.Property<string>("DoItemMemo")
  1750. .HasColumnType("nvarchar(max)");
  1751. b.Property<string>("DoItemState")
  1752. .HasMaxLength(50)
  1753. .HasColumnType("nvarchar(50)");
  1754. b.Property<DateTime?>("EntrustingDate")
  1755. .HasColumnType("date");
  1756. b.Property<DateTime?>("FinalizationDate")
  1757. .HasColumnType("date");
  1758. b.Property<DateTime?>("FinishedDate")
  1759. .HasColumnType("date");
  1760. b.Property<DateTime?>("FirstDraftDate")
  1761. .HasColumnType("date");
  1762. b.Property<DateTime?>("InternalDate")
  1763. .HasColumnType("date");
  1764. b.Property<string>("OverDueMemo")
  1765. .HasMaxLength(100)
  1766. .HasColumnType("nvarchar(100)");
  1767. b.Property<int?>("PreOastaffId")
  1768. .HasColumnType("int")
  1769. .HasColumnName("PreOAStaffId");
  1770. b.Property<string>("ReturnCasseNo")
  1771. .HasColumnType("nvarchar(max)");
  1772. b.Property<DateTime?>("ReturnDate")
  1773. .HasColumnType("date");
  1774. b.Property<int?>("ReviewerId")
  1775. .HasColumnType("int");
  1776. b.Property<int?>("Status")
  1777. .HasColumnType("int");
  1778. b.Property<string>("Type")
  1779. .HasColumnType("nvarchar(max)");
  1780. b.Property<int?>("WordCount")
  1781. .HasColumnType("int");
  1782. b.HasKey("Id");
  1783. b.HasIndex("CalMonthId");
  1784. b.HasIndex("CustomerId");
  1785. b.HasIndex("PreOastaffId");
  1786. b.HasIndex("ReviewerId");
  1787. b.ToTable("PerformanceItem");
  1788. });
  1789. modelBuilder.Entity("wispro.sp.entity.Position", b =>
  1790. {
  1791. b.Property<int>("Id")
  1792. .ValueGeneratedOnAdd()
  1793. .HasColumnType("int")
  1794. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1795. b.Property<string>("Memo")
  1796. .HasColumnType("nvarchar(max)");
  1797. b.Property<string>("Name")
  1798. .HasColumnType("nvarchar(max)");
  1799. b.HasKey("Id");
  1800. b.ToTable("Position");
  1801. });
  1802. modelBuilder.Entity("wispro.sp.entity.SelectValue", b =>
  1803. {
  1804. b.Property<int>("Id")
  1805. .ValueGeneratedOnAdd()
  1806. .HasColumnType("int")
  1807. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1808. b.Property<int>("InputFieldId")
  1809. .HasColumnType("int");
  1810. b.Property<string>("Value")
  1811. .HasColumnType("nvarchar(max)");
  1812. b.HasKey("Id");
  1813. b.HasIndex("InputFieldId");
  1814. b.ToTable("SelectValue");
  1815. b.HasData(
  1816. new
  1817. {
  1818. Id = 1,
  1819. InputFieldId = 5,
  1820. Value = "同意"
  1821. },
  1822. new
  1823. {
  1824. Id = 2,
  1825. InputFieldId = 5,
  1826. Value = "拒绝"
  1827. },
  1828. new
  1829. {
  1830. Id = 3,
  1831. InputFieldId = 10,
  1832. Value = "同意"
  1833. },
  1834. new
  1835. {
  1836. Id = 4,
  1837. InputFieldId = 10,
  1838. Value = "拒绝"
  1839. },
  1840. new
  1841. {
  1842. Id = 5,
  1843. InputFieldId = 13,
  1844. Value = "同意"
  1845. },
  1846. new
  1847. {
  1848. Id = 6,
  1849. InputFieldId = 13,
  1850. Value = "拒绝"
  1851. },
  1852. new
  1853. {
  1854. Id = 7,
  1855. InputFieldId = 17,
  1856. Value = "同意"
  1857. },
  1858. new
  1859. {
  1860. Id = 8,
  1861. InputFieldId = 17,
  1862. Value = "拒绝"
  1863. },
  1864. new
  1865. {
  1866. Id = 9,
  1867. InputFieldId = 6,
  1868. Value = "S"
  1869. },
  1870. new
  1871. {
  1872. Id = 10,
  1873. InputFieldId = 6,
  1874. Value = "A"
  1875. },
  1876. new
  1877. {
  1878. Id = 11,
  1879. InputFieldId = 6,
  1880. Value = "B"
  1881. },
  1882. new
  1883. {
  1884. Id = 12,
  1885. InputFieldId = 6,
  1886. Value = "C"
  1887. },
  1888. new
  1889. {
  1890. Id = 13,
  1891. InputFieldId = 6,
  1892. Value = "D"
  1893. },
  1894. new
  1895. {
  1896. Id = 14,
  1897. InputFieldId = 11,
  1898. Value = "实质"
  1899. },
  1900. new
  1901. {
  1902. Id = 15,
  1903. InputFieldId = 11,
  1904. Value = "形式"
  1905. },
  1906. new
  1907. {
  1908. Id = 16,
  1909. InputFieldId = 19,
  1910. Value = "中-德"
  1911. },
  1912. new
  1913. {
  1914. Id = 17,
  1915. InputFieldId = 19,
  1916. Value = "中-英"
  1917. },
  1918. new
  1919. {
  1920. Id = 18,
  1921. InputFieldId = 19,
  1922. Value = "英-中"
  1923. },
  1924. new
  1925. {
  1926. Id = 19,
  1927. InputFieldId = 22,
  1928. Value = "同意"
  1929. },
  1930. new
  1931. {
  1932. Id = 20,
  1933. InputFieldId = 22,
  1934. Value = "拒绝"
  1935. });
  1936. });
  1937. modelBuilder.Entity("wispro.sp.entity.Staff", b =>
  1938. {
  1939. b.Property<int>("Id")
  1940. .ValueGeneratedOnAdd()
  1941. .HasColumnType("int")
  1942. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1943. b.Property<string>("Account")
  1944. .IsRequired()
  1945. .HasMaxLength(50)
  1946. .HasColumnType("nvarchar(50)");
  1947. b.Property<string>("Department")
  1948. .HasMaxLength(50)
  1949. .HasColumnType("nvarchar(50)");
  1950. b.Property<DateTime?>("EntyDate")
  1951. .HasColumnType("date");
  1952. b.Property<bool>("IsCalPerformsnce")
  1953. .HasColumnType("bit")
  1954. .HasColumnName("isCalPerformsnce");
  1955. b.Property<bool>("IsOnJob")
  1956. .HasColumnType("bit");
  1957. b.Property<string>("Mail")
  1958. .HasColumnType("nvarchar(max)");
  1959. b.Property<string>("Memo")
  1960. .HasColumnType("nvarchar(max)");
  1961. b.Property<string>("Mobile")
  1962. .HasColumnType("nvarchar(max)");
  1963. b.Property<string>("Name")
  1964. .IsRequired()
  1965. .HasMaxLength(50)
  1966. .HasColumnType("nvarchar(50)");
  1967. b.Property<string>("Password")
  1968. .IsRequired()
  1969. .HasColumnType("nvarchar(max)");
  1970. b.Property<string>("Sex")
  1971. .HasColumnType("nvarchar(max)");
  1972. b.Property<int?>("StaffGradeId")
  1973. .HasColumnType("int");
  1974. b.Property<string>("Status")
  1975. .IsRequired()
  1976. .HasMaxLength(25)
  1977. .HasColumnType("nvarchar(25)");
  1978. b.Property<string>("Tel")
  1979. .HasColumnType("nvarchar(max)");
  1980. b.Property<string>("WorkPlace")
  1981. .HasMaxLength(50)
  1982. .HasColumnType("nvarchar(50)");
  1983. b.HasKey("Id");
  1984. b.HasIndex("StaffGradeId");
  1985. b.ToTable("Staff");
  1986. });
  1987. modelBuilder.Entity("wispro.sp.entity.StaffGrade", b =>
  1988. {
  1989. b.Property<int>("Id")
  1990. .ValueGeneratedOnAdd()
  1991. .HasColumnType("int")
  1992. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  1993. b.Property<double>("Coefficient")
  1994. .HasColumnType("float");
  1995. b.Property<string>("Grade")
  1996. .IsRequired()
  1997. .HasMaxLength(5)
  1998. .HasColumnType("nchar(5)")
  1999. .IsFixedLength(true);
  2000. b.HasKey("Id");
  2001. b.ToTable("StaffGrade");
  2002. b.HasData(
  2003. new
  2004. {
  2005. Id = 1,
  2006. Coefficient = 1.2,
  2007. Grade = "S级"
  2008. },
  2009. new
  2010. {
  2011. Id = 2,
  2012. Coefficient = 1.1000000000000001,
  2013. Grade = "A3级"
  2014. },
  2015. new
  2016. {
  2017. Id = 3,
  2018. Coefficient = 1.1000000000000001,
  2019. Grade = "A2级"
  2020. },
  2021. new
  2022. {
  2023. Id = 4,
  2024. Coefficient = 1.1000000000000001,
  2025. Grade = "A1级"
  2026. },
  2027. new
  2028. {
  2029. Id = 5,
  2030. Coefficient = 1.0,
  2031. Grade = "B3级"
  2032. },
  2033. new
  2034. {
  2035. Id = 6,
  2036. Coefficient = 1.0,
  2037. Grade = "B2级"
  2038. },
  2039. new
  2040. {
  2041. Id = 7,
  2042. Coefficient = 0.90000000000000002,
  2043. Grade = "B1级"
  2044. },
  2045. new
  2046. {
  2047. Id = 8,
  2048. Coefficient = 0.90000000000000002,
  2049. Grade = "C3级"
  2050. },
  2051. new
  2052. {
  2053. Id = 9,
  2054. Coefficient = 0.69999999999999996,
  2055. Grade = "C2级"
  2056. },
  2057. new
  2058. {
  2059. Id = 10,
  2060. Coefficient = 0.69999999999999996,
  2061. Grade = "C1级"
  2062. },
  2063. new
  2064. {
  2065. Id = 11,
  2066. Coefficient = 0.59999999999999998,
  2067. Grade = "D3级"
  2068. },
  2069. new
  2070. {
  2071. Id = 12,
  2072. Coefficient = 0.59999999999999998,
  2073. Grade = "D2级"
  2074. },
  2075. new
  2076. {
  2077. Id = 13,
  2078. Coefficient = 0.5,
  2079. Grade = "D1级"
  2080. },
  2081. new
  2082. {
  2083. Id = 14,
  2084. Coefficient = 1.1000000000000001,
  2085. Grade = "A级"
  2086. },
  2087. new
  2088. {
  2089. Id = 15,
  2090. Coefficient = 1.0,
  2091. Grade = "C级"
  2092. },
  2093. new
  2094. {
  2095. Id = 16,
  2096. Coefficient = 0.90000000000000002,
  2097. Grade = "D级"
  2098. });
  2099. });
  2100. modelBuilder.Entity("wispro.sp.entity.StaffStatistics", b =>
  2101. {
  2102. b.Property<int>("Id")
  2103. .ValueGeneratedOnAdd()
  2104. .HasColumnType("int")
  2105. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2106. b.Property<int>("CalMonthId")
  2107. .HasColumnType("int");
  2108. b.Property<int>("StaffId")
  2109. .HasColumnType("int");
  2110. b.Property<string>("jxType")
  2111. .HasColumnType("nvarchar(max)");
  2112. b.Property<double?>("totalActuallyPoint")
  2113. .HasColumnType("float");
  2114. b.Property<double?>("totalBasePoint")
  2115. .HasColumnType("float");
  2116. b.HasKey("Id");
  2117. b.HasIndex("CalMonthId");
  2118. b.HasIndex("StaffId");
  2119. b.ToTable("StaffStatistics");
  2120. });
  2121. modelBuilder.Entity("wispro.sp.entity.VerifyCoefficient", b =>
  2122. {
  2123. b.Property<int>("CheckerId")
  2124. .HasColumnType("int");
  2125. b.Property<int>("DoPersonId")
  2126. .HasColumnType("int");
  2127. b.Property<double>("Coefficient")
  2128. .HasColumnType("float");
  2129. b.HasKey("CheckerId", "DoPersonId");
  2130. b.HasIndex("DoPersonId");
  2131. b.ToTable("VerifyCoefficient");
  2132. b.HasData(
  2133. new
  2134. {
  2135. CheckerId = 1,
  2136. DoPersonId = 5,
  2137. Coefficient = 0.29999999999999999
  2138. },
  2139. new
  2140. {
  2141. CheckerId = 1,
  2142. DoPersonId = 6,
  2143. Coefficient = 0.29999999999999999
  2144. },
  2145. new
  2146. {
  2147. CheckerId = 1,
  2148. DoPersonId = 7,
  2149. Coefficient = 0.29999999999999999
  2150. },
  2151. new
  2152. {
  2153. CheckerId = 1,
  2154. DoPersonId = 8,
  2155. Coefficient = 0.29999999999999999
  2156. },
  2157. new
  2158. {
  2159. CheckerId = 1,
  2160. DoPersonId = 9,
  2161. Coefficient = 0.40000000000000002
  2162. },
  2163. new
  2164. {
  2165. CheckerId = 1,
  2166. DoPersonId = 10,
  2167. Coefficient = 0.40000000000000002
  2168. },
  2169. new
  2170. {
  2171. CheckerId = 1,
  2172. DoPersonId = 11,
  2173. Coefficient = 0.5
  2174. },
  2175. new
  2176. {
  2177. CheckerId = 1,
  2178. DoPersonId = 12,
  2179. Coefficient = 0.5
  2180. },
  2181. new
  2182. {
  2183. CheckerId = 1,
  2184. DoPersonId = 13,
  2185. Coefficient = 0.59999999999999998
  2186. },
  2187. new
  2188. {
  2189. CheckerId = 2,
  2190. DoPersonId = 5,
  2191. Coefficient = 0.20000000000000001
  2192. },
  2193. new
  2194. {
  2195. CheckerId = 2,
  2196. DoPersonId = 6,
  2197. Coefficient = 0.20000000000000001
  2198. },
  2199. new
  2200. {
  2201. CheckerId = 2,
  2202. DoPersonId = 7,
  2203. Coefficient = 0.20000000000000001
  2204. },
  2205. new
  2206. {
  2207. CheckerId = 2,
  2208. DoPersonId = 8,
  2209. Coefficient = 0.20000000000000001
  2210. },
  2211. new
  2212. {
  2213. CheckerId = 2,
  2214. DoPersonId = 9,
  2215. Coefficient = 0.29999999999999999
  2216. },
  2217. new
  2218. {
  2219. CheckerId = 2,
  2220. DoPersonId = 10,
  2221. Coefficient = 0.29999999999999999
  2222. },
  2223. new
  2224. {
  2225. CheckerId = 2,
  2226. DoPersonId = 11,
  2227. Coefficient = 0.40000000000000002
  2228. },
  2229. new
  2230. {
  2231. CheckerId = 2,
  2232. DoPersonId = 12,
  2233. Coefficient = 0.40000000000000002
  2234. },
  2235. new
  2236. {
  2237. CheckerId = 2,
  2238. DoPersonId = 13,
  2239. Coefficient = 0.5
  2240. },
  2241. new
  2242. {
  2243. CheckerId = 3,
  2244. DoPersonId = 5,
  2245. Coefficient = 0.20000000000000001
  2246. },
  2247. new
  2248. {
  2249. CheckerId = 3,
  2250. DoPersonId = 6,
  2251. Coefficient = 0.20000000000000001
  2252. },
  2253. new
  2254. {
  2255. CheckerId = 3,
  2256. DoPersonId = 7,
  2257. Coefficient = 0.20000000000000001
  2258. },
  2259. new
  2260. {
  2261. CheckerId = 3,
  2262. DoPersonId = 8,
  2263. Coefficient = 0.20000000000000001
  2264. },
  2265. new
  2266. {
  2267. CheckerId = 3,
  2268. DoPersonId = 9,
  2269. Coefficient = 0.29999999999999999
  2270. },
  2271. new
  2272. {
  2273. CheckerId = 3,
  2274. DoPersonId = 10,
  2275. Coefficient = 0.29999999999999999
  2276. },
  2277. new
  2278. {
  2279. CheckerId = 3,
  2280. DoPersonId = 11,
  2281. Coefficient = 0.40000000000000002
  2282. },
  2283. new
  2284. {
  2285. CheckerId = 3,
  2286. DoPersonId = 12,
  2287. Coefficient = 0.40000000000000002
  2288. },
  2289. new
  2290. {
  2291. CheckerId = 3,
  2292. DoPersonId = 13,
  2293. Coefficient = 0.5
  2294. },
  2295. new
  2296. {
  2297. CheckerId = 4,
  2298. DoPersonId = 5,
  2299. Coefficient = 0.20000000000000001
  2300. },
  2301. new
  2302. {
  2303. CheckerId = 4,
  2304. DoPersonId = 6,
  2305. Coefficient = 0.20000000000000001
  2306. },
  2307. new
  2308. {
  2309. CheckerId = 4,
  2310. DoPersonId = 7,
  2311. Coefficient = 0.20000000000000001
  2312. },
  2313. new
  2314. {
  2315. CheckerId = 4,
  2316. DoPersonId = 8,
  2317. Coefficient = 0.20000000000000001
  2318. },
  2319. new
  2320. {
  2321. CheckerId = 4,
  2322. DoPersonId = 9,
  2323. Coefficient = 0.29999999999999999
  2324. },
  2325. new
  2326. {
  2327. CheckerId = 4,
  2328. DoPersonId = 10,
  2329. Coefficient = 0.29999999999999999
  2330. },
  2331. new
  2332. {
  2333. CheckerId = 4,
  2334. DoPersonId = 11,
  2335. Coefficient = 0.40000000000000002
  2336. },
  2337. new
  2338. {
  2339. CheckerId = 4,
  2340. DoPersonId = 12,
  2341. Coefficient = 0.40000000000000002
  2342. },
  2343. new
  2344. {
  2345. CheckerId = 4,
  2346. DoPersonId = 13,
  2347. Coefficient = 0.5
  2348. },
  2349. new
  2350. {
  2351. CheckerId = 5,
  2352. DoPersonId = 5,
  2353. Coefficient = 0.20000000000000001
  2354. },
  2355. new
  2356. {
  2357. CheckerId = 5,
  2358. DoPersonId = 6,
  2359. Coefficient = 0.20000000000000001
  2360. },
  2361. new
  2362. {
  2363. CheckerId = 5,
  2364. DoPersonId = 7,
  2365. Coefficient = 0.20000000000000001
  2366. },
  2367. new
  2368. {
  2369. CheckerId = 5,
  2370. DoPersonId = 8,
  2371. Coefficient = 0.20000000000000001
  2372. },
  2373. new
  2374. {
  2375. CheckerId = 5,
  2376. DoPersonId = 9,
  2377. Coefficient = 0.29999999999999999
  2378. },
  2379. new
  2380. {
  2381. CheckerId = 5,
  2382. DoPersonId = 10,
  2383. Coefficient = 0.29999999999999999
  2384. },
  2385. new
  2386. {
  2387. CheckerId = 5,
  2388. DoPersonId = 11,
  2389. Coefficient = 0.40000000000000002
  2390. },
  2391. new
  2392. {
  2393. CheckerId = 5,
  2394. DoPersonId = 12,
  2395. Coefficient = 0.40000000000000002
  2396. },
  2397. new
  2398. {
  2399. CheckerId = 5,
  2400. DoPersonId = 13,
  2401. Coefficient = 0.5
  2402. },
  2403. new
  2404. {
  2405. CheckerId = 6,
  2406. DoPersonId = 5,
  2407. Coefficient = 0.20000000000000001
  2408. },
  2409. new
  2410. {
  2411. CheckerId = 6,
  2412. DoPersonId = 6,
  2413. Coefficient = 0.20000000000000001
  2414. },
  2415. new
  2416. {
  2417. CheckerId = 6,
  2418. DoPersonId = 7,
  2419. Coefficient = 0.20000000000000001
  2420. },
  2421. new
  2422. {
  2423. CheckerId = 6,
  2424. DoPersonId = 8,
  2425. Coefficient = 0.20000000000000001
  2426. },
  2427. new
  2428. {
  2429. CheckerId = 6,
  2430. DoPersonId = 9,
  2431. Coefficient = 0.29999999999999999
  2432. },
  2433. new
  2434. {
  2435. CheckerId = 6,
  2436. DoPersonId = 10,
  2437. Coefficient = 0.29999999999999999
  2438. },
  2439. new
  2440. {
  2441. CheckerId = 6,
  2442. DoPersonId = 11,
  2443. Coefficient = 0.40000000000000002
  2444. },
  2445. new
  2446. {
  2447. CheckerId = 6,
  2448. DoPersonId = 12,
  2449. Coefficient = 0.40000000000000002
  2450. },
  2451. new
  2452. {
  2453. CheckerId = 6,
  2454. DoPersonId = 13,
  2455. Coefficient = 0.5
  2456. });
  2457. });
  2458. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
  2459. {
  2460. b.Property<int>("Id")
  2461. .ValueGeneratedOnAdd()
  2462. .HasColumnType("int")
  2463. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2464. b.Property<string>("InputForm")
  2465. .HasColumnType("nvarchar(max)");
  2466. b.Property<string>("Name")
  2467. .HasColumnType("nvarchar(max)");
  2468. b.Property<string>("OnActionObjectType")
  2469. .HasColumnType("nvarchar(max)");
  2470. b.Property<int>("StepId")
  2471. .HasColumnType("int");
  2472. b.HasKey("Id");
  2473. b.HasIndex("StepId");
  2474. b.ToTable("Action");
  2475. });
  2476. modelBuilder.Entity("wispro.sp.entity.workflowDefine.InputValueSetting", b =>
  2477. {
  2478. b.Property<int>("Id")
  2479. .ValueGeneratedOnAdd()
  2480. .HasColumnType("int")
  2481. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2482. b.Property<string>("DisplayName")
  2483. .HasColumnType("nvarchar(max)");
  2484. b.Property<string>("Options")
  2485. .HasColumnType("nvarchar(max)");
  2486. b.Property<int?>("ParentSettingId")
  2487. .HasColumnType("int");
  2488. b.Property<int>("actionId")
  2489. .HasColumnType("int");
  2490. b.Property<string>("bindField")
  2491. .HasColumnType("nvarchar(max)");
  2492. b.Property<string>("bindFieldSavetoObjectCondition")
  2493. .HasColumnType("nvarchar(max)");
  2494. b.Property<int>("valueType")
  2495. .HasColumnType("int");
  2496. b.HasKey("Id");
  2497. b.HasIndex("ParentSettingId");
  2498. b.HasIndex("actionId");
  2499. b.ToTable("InputValueSetting");
  2500. });
  2501. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Step", b =>
  2502. {
  2503. b.Property<int>("Id")
  2504. .ValueGeneratedOnAdd()
  2505. .HasColumnType("int")
  2506. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2507. b.Property<string>("Name")
  2508. .HasColumnType("nvarchar(max)");
  2509. b.Property<string>("defaultResponseSetting")
  2510. .HasColumnType("nvarchar(max)");
  2511. b.Property<int>("stepType")
  2512. .HasColumnType("int");
  2513. b.Property<int>("workflowId")
  2514. .HasColumnType("int");
  2515. b.HasKey("Id");
  2516. b.HasIndex("workflowId");
  2517. b.ToTable("Step");
  2518. });
  2519. modelBuilder.Entity("wispro.sp.entity.workflowDefine.TrasferCondition", b =>
  2520. {
  2521. b.Property<int>("Id")
  2522. .ValueGeneratedOnAdd()
  2523. .HasColumnType("int")
  2524. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2525. b.Property<string>("Condition")
  2526. .HasColumnType("nvarchar(max)");
  2527. b.Property<int>("StepId")
  2528. .HasColumnType("int");
  2529. b.Property<int>("nextStepId")
  2530. .HasColumnType("int");
  2531. b.HasKey("Id");
  2532. b.HasIndex("StepId");
  2533. b.HasIndex("nextStepId");
  2534. b.ToTable("TrasferCondition");
  2535. });
  2536. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Workflow", b =>
  2537. {
  2538. b.Property<int>("Id")
  2539. .ValueGeneratedOnAdd()
  2540. .HasColumnType("int")
  2541. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2542. b.Property<string>("ContentObjectType")
  2543. .HasColumnType("nvarchar(max)");
  2544. b.Property<DateTime>("CreateTime")
  2545. .HasColumnType("datetime2");
  2546. b.Property<int>("CreateUserId")
  2547. .HasColumnType("int");
  2548. b.Property<DateTime>("EffectivrDate")
  2549. .HasColumnType("datetime2");
  2550. b.Property<int>("EndStepId")
  2551. .HasColumnType("int");
  2552. b.Property<DateTime>("ExpirationDate")
  2553. .HasColumnType("datetime2");
  2554. b.Property<int>("InitActionId")
  2555. .HasColumnType("int");
  2556. b.Property<string>("Memo")
  2557. .HasColumnType("nvarchar(max)");
  2558. b.Property<string>("Name")
  2559. .HasColumnType("nvarchar(max)");
  2560. b.HasKey("Id");
  2561. b.HasIndex("CreateUserId");
  2562. b.HasIndex("InitActionId");
  2563. b.ToTable("Workflow");
  2564. });
  2565. modelBuilder.Entity("wispro.sp.entity.workflowInstance.InputValue", b =>
  2566. {
  2567. b.Property<int>("Id")
  2568. .ValueGeneratedOnAdd()
  2569. .HasColumnType("int")
  2570. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2571. b.Property<string>("value")
  2572. .HasColumnType("nvarchar(max)");
  2573. b.Property<int>("valueSettingId")
  2574. .HasColumnType("int");
  2575. b.Property<int>("workflowInstanceId")
  2576. .HasColumnType("int");
  2577. b.HasKey("Id");
  2578. b.HasIndex("valueSettingId");
  2579. b.HasIndex("workflowInstanceId");
  2580. b.ToTable("InputValue");
  2581. });
  2582. modelBuilder.Entity("wispro.sp.entity.workflowInstance.StepInstance", b =>
  2583. {
  2584. b.Property<int>("Id")
  2585. .ValueGeneratedOnAdd()
  2586. .HasColumnType("int")
  2587. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2588. b.Property<int?>("PreviousStepId")
  2589. .HasColumnType("int");
  2590. b.Property<int>("stepId")
  2591. .HasColumnType("int");
  2592. b.Property<int>("workflowInstanceId")
  2593. .HasColumnType("int");
  2594. b.HasKey("Id");
  2595. b.HasIndex("stepId");
  2596. b.HasIndex("workflowInstanceId");
  2597. b.ToTable("StepInstance");
  2598. });
  2599. modelBuilder.Entity("wispro.sp.entity.workflowInstance.WorkflowInstance", b =>
  2600. {
  2601. b.Property<int>("Id")
  2602. .ValueGeneratedOnAdd()
  2603. .HasColumnType("int")
  2604. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  2605. b.Property<int>("ObjectId")
  2606. .HasColumnType("int");
  2607. b.Property<int>("workflowId")
  2608. .HasColumnType("int");
  2609. b.HasKey("Id");
  2610. b.HasIndex("workflowId");
  2611. b.ToTable("WorkflowInstance");
  2612. });
  2613. modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
  2614. {
  2615. b.HasOne("wispro.sp.entity.Staff", "Creater")
  2616. .WithMany()
  2617. .HasForeignKey("CreaterId")
  2618. .OnDelete(DeleteBehavior.Cascade)
  2619. .IsRequired();
  2620. b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
  2621. .WithMany()
  2622. .HasForeignKey("ItemId")
  2623. .OnDelete(DeleteBehavior.Cascade)
  2624. .IsRequired();
  2625. b.HasOne("wispro.sp.entity.Staff", "Reviewer")
  2626. .WithMany()
  2627. .HasForeignKey("ReviewerId")
  2628. .OnDelete(DeleteBehavior.NoAction);
  2629. b.HasOne("wispro.sp.entity.AppealType", "Type")
  2630. .WithMany()
  2631. .HasForeignKey("TypeId")
  2632. .OnDelete(DeleteBehavior.NoAction)
  2633. .IsRequired();
  2634. b.Navigation("Creater");
  2635. b.Navigation("Item");
  2636. b.Navigation("Reviewer");
  2637. b.Navigation("Type");
  2638. });
  2639. modelBuilder.Entity("wispro.sp.entity.AttachFile", b =>
  2640. {
  2641. b.HasOne("wispro.sp.entity.AppealRecord", "AppealRecord")
  2642. .WithMany("AttachFiles")
  2643. .HasForeignKey("AppealRecordId")
  2644. .HasConstraintName("FK_AttachFile_AppealRecord");
  2645. b.HasOne("wispro.sp.entity.Staff", "UploadUser")
  2646. .WithMany()
  2647. .HasForeignKey("UploadUserId")
  2648. .HasConstraintName("FK_AttachFile_UpdateUser")
  2649. .OnDelete(DeleteBehavior.NoAction);
  2650. b.Navigation("AppealRecord");
  2651. b.Navigation("UploadUser");
  2652. });
  2653. modelBuilder.Entity("wispro.sp.entity.Customer", b =>
  2654. {
  2655. b.HasOne("wispro.sp.entity.Staff", "ResponseMan")
  2656. .WithMany("Customers")
  2657. .HasForeignKey("ResponseManId")
  2658. .HasConstraintName("FK_Customer_Staff");
  2659. b.Navigation("ResponseMan");
  2660. });
  2661. modelBuilder.Entity("wispro.sp.entity.DepartmentPosition", b =>
  2662. {
  2663. b.HasOne("wispro.sp.entity.Position", "Position")
  2664. .WithMany()
  2665. .HasForeignKey("PositionId")
  2666. .OnDelete(DeleteBehavior.Cascade)
  2667. .IsRequired();
  2668. b.HasOne("wispro.sp.entity.Staff", "Staff")
  2669. .WithMany("Positions")
  2670. .HasForeignKey("StaffId")
  2671. .OnDelete(DeleteBehavior.Cascade)
  2672. .IsRequired();
  2673. b.HasOne("wispro.sp.entity.Department", "department")
  2674. .WithMany()
  2675. .HasForeignKey("departmentId")
  2676. .OnDelete(DeleteBehavior.Cascade)
  2677. .IsRequired();
  2678. b.Navigation("department");
  2679. b.Navigation("Position");
  2680. b.Navigation("Staff");
  2681. });
  2682. modelBuilder.Entity("wispro.sp.entity.InputField", b =>
  2683. {
  2684. b.HasOne("wispro.sp.entity.AppealType", "AppealType")
  2685. .WithMany()
  2686. .HasForeignKey("AppealTypeId")
  2687. .OnDelete(DeleteBehavior.Cascade)
  2688. .IsRequired();
  2689. b.Navigation("AppealType");
  2690. });
  2691. modelBuilder.Entity("wispro.sp.entity.InputFieldValue", b =>
  2692. {
  2693. b.HasOne("wispro.sp.entity.AppealRecord", "AppealRecord")
  2694. .WithMany()
  2695. .HasForeignKey("AppealRecordId")
  2696. .OnDelete(DeleteBehavior.Cascade)
  2697. .IsRequired();
  2698. b.HasOne("wispro.sp.entity.InputField", "InputField")
  2699. .WithMany()
  2700. .HasForeignKey("InputFieldId")
  2701. .OnDelete(DeleteBehavior.Cascade)
  2702. .IsRequired();
  2703. b.Navigation("AppealRecord");
  2704. b.Navigation("InputField");
  2705. });
  2706. modelBuilder.Entity("wispro.sp.entity.ItemStaff", b =>
  2707. {
  2708. b.HasOne("wispro.sp.entity.Staff", "DoPerson")
  2709. .WithMany("ItemStaffs")
  2710. .HasForeignKey("DoPersonId")
  2711. .HasConstraintName("FK_ItemStaff_Staff")
  2712. .IsRequired();
  2713. b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
  2714. .WithMany("ItemStaffs")
  2715. .HasForeignKey("ItemId")
  2716. .HasConstraintName("FK_ItemStaff_PerformanceItem")
  2717. .IsRequired();
  2718. b.Navigation("DoPerson");
  2719. b.Navigation("Item");
  2720. });
  2721. modelBuilder.Entity("wispro.sp.entity.Message", b =>
  2722. {
  2723. b.HasOne("wispro.sp.entity.Staff", "From")
  2724. .WithMany()
  2725. .HasForeignKey("FromId")
  2726. .HasConstraintName("FK_From_Staff")
  2727. .IsRequired();
  2728. b.Navigation("From");
  2729. });
  2730. modelBuilder.Entity("wispro.sp.entity.MessagePerformanceItem", b =>
  2731. {
  2732. b.HasOne("wispro.sp.entity.PerformanceItem", "Item")
  2733. .WithMany()
  2734. .HasForeignKey("ItemId")
  2735. .HasConstraintName("FK_MessagePerformanceItem_Item")
  2736. .OnDelete(DeleteBehavior.Cascade)
  2737. .IsRequired();
  2738. b.HasOne("wispro.sp.entity.Message", "Message")
  2739. .WithMany("RelatedItem")
  2740. .HasForeignKey("MessageId")
  2741. .HasConstraintName("FK_MessagePerformanceItem_Message")
  2742. .OnDelete(DeleteBehavior.Cascade)
  2743. .IsRequired();
  2744. b.Navigation("Item");
  2745. b.Navigation("Message");
  2746. });
  2747. modelBuilder.Entity("wispro.sp.entity.MessageReadRecord", b =>
  2748. {
  2749. b.HasOne("wispro.sp.entity.Message", "Message")
  2750. .WithMany()
  2751. .HasForeignKey("MessageId")
  2752. .HasConstraintName("FK_MessageReadRecord_Message")
  2753. .IsRequired();
  2754. b.HasOne("wispro.sp.entity.Message", null)
  2755. .WithMany("To")
  2756. .HasForeignKey("MessageId1");
  2757. b.HasOne("wispro.sp.entity.Staff", "Staff")
  2758. .WithMany()
  2759. .HasForeignKey("StaffId")
  2760. .HasConstraintName("FK_MessageReadRecord_Staff")
  2761. .IsRequired();
  2762. b.Navigation("Message");
  2763. b.Navigation("Staff");
  2764. });
  2765. modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
  2766. {
  2767. b.HasOne("wispro.sp.entity.CalMonth", "CalMonth")
  2768. .WithMany("PerformanceItems")
  2769. .HasForeignKey("CalMonthId")
  2770. .HasConstraintName("FK_PerformanceItem_CalMonth")
  2771. .OnDelete(DeleteBehavior.Cascade)
  2772. .IsRequired();
  2773. b.HasOne("wispro.sp.entity.Customer", "Customer")
  2774. .WithMany("PerformanceItems")
  2775. .HasForeignKey("CustomerId")
  2776. .HasConstraintName("FK_PerformanceItem_Customer");
  2777. b.HasOne("wispro.sp.entity.Staff", "PreOastaff")
  2778. .WithMany()
  2779. .HasForeignKey("PreOastaffId")
  2780. .HasConstraintName("FK_PerformanceItem_Staff");
  2781. b.HasOne("wispro.sp.entity.Staff", "Reviewer")
  2782. .WithMany("ReviewerItems")
  2783. .HasForeignKey("ReviewerId")
  2784. .HasConstraintName("FK_PerformanceItem_Reviewer");
  2785. b.Navigation("CalMonth");
  2786. b.Navigation("Customer");
  2787. b.Navigation("PreOastaff");
  2788. b.Navigation("Reviewer");
  2789. });
  2790. modelBuilder.Entity("wispro.sp.entity.SelectValue", b =>
  2791. {
  2792. b.HasOne("wispro.sp.entity.InputField", "InputField")
  2793. .WithMany("SelectValues")
  2794. .HasForeignKey("InputFieldId")
  2795. .OnDelete(DeleteBehavior.Cascade)
  2796. .IsRequired();
  2797. b.Navigation("InputField");
  2798. });
  2799. modelBuilder.Entity("wispro.sp.entity.Staff", b =>
  2800. {
  2801. b.HasOne("wispro.sp.entity.StaffGrade", "StaffGrade")
  2802. .WithMany("Staff")
  2803. .HasForeignKey("StaffGradeId")
  2804. .HasConstraintName("FK_Staff_StaffGrade");
  2805. b.Navigation("StaffGrade");
  2806. });
  2807. modelBuilder.Entity("wispro.sp.entity.StaffStatistics", b =>
  2808. {
  2809. b.HasOne("wispro.sp.entity.CalMonth", "CalMonth")
  2810. .WithMany()
  2811. .HasForeignKey("CalMonthId")
  2812. .OnDelete(DeleteBehavior.Cascade)
  2813. .IsRequired();
  2814. b.HasOne("wispro.sp.entity.Staff", "Staff")
  2815. .WithMany()
  2816. .HasForeignKey("StaffId")
  2817. .OnDelete(DeleteBehavior.Cascade)
  2818. .IsRequired();
  2819. b.Navigation("CalMonth");
  2820. b.Navigation("Staff");
  2821. });
  2822. modelBuilder.Entity("wispro.sp.entity.VerifyCoefficient", b =>
  2823. {
  2824. b.HasOne("wispro.sp.entity.StaffGrade", "Checker")
  2825. .WithMany("VerifyCoefficientCheckers")
  2826. .HasForeignKey("CheckerId")
  2827. .HasConstraintName("FK_VerifyCoefficient_StaffGrade")
  2828. .IsRequired();
  2829. b.HasOne("wispro.sp.entity.StaffGrade", "DoPerson")
  2830. .WithMany("VerifyCoefficientDoPeople")
  2831. .HasForeignKey("DoPersonId")
  2832. .HasConstraintName("FK_VerifyCoefficient_StaffGrade1")
  2833. .IsRequired();
  2834. b.Navigation("Checker");
  2835. b.Navigation("DoPerson");
  2836. });
  2837. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
  2838. {
  2839. b.HasOne("wispro.sp.entity.workflowDefine.Step", "step")
  2840. .WithMany()
  2841. .HasForeignKey("StepId")
  2842. .OnDelete(DeleteBehavior.Cascade)
  2843. .IsRequired();
  2844. b.Navigation("step");
  2845. });
  2846. modelBuilder.Entity("wispro.sp.entity.workflowDefine.InputValueSetting", b =>
  2847. {
  2848. b.HasOne("wispro.sp.entity.workflowDefine.InputValueSetting", "ParentSetting")
  2849. .WithMany()
  2850. .HasForeignKey("ParentSettingId");
  2851. b.HasOne("wispro.sp.entity.workflowDefine.Action", "action")
  2852. .WithMany("inputValuesSettings")
  2853. .HasForeignKey("actionId")
  2854. .OnDelete(DeleteBehavior.NoAction)
  2855. .IsRequired();
  2856. b.Navigation("action");
  2857. b.Navigation("ParentSetting");
  2858. });
  2859. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Step", b =>
  2860. {
  2861. b.HasOne("wispro.sp.entity.workflowDefine.Workflow", "workflow")
  2862. .WithMany()
  2863. .HasForeignKey("workflowId")
  2864. .OnDelete(DeleteBehavior.Cascade)
  2865. .IsRequired();
  2866. b.Navigation("workflow");
  2867. });
  2868. modelBuilder.Entity("wispro.sp.entity.workflowDefine.TrasferCondition", b =>
  2869. {
  2870. b.HasOne("wispro.sp.entity.workflowDefine.Step", "Step")
  2871. .WithMany()
  2872. .HasForeignKey("StepId")
  2873. .OnDelete(DeleteBehavior.NoAction)
  2874. .IsRequired();
  2875. b.HasOne("wispro.sp.entity.workflowDefine.Step", "nextStep")
  2876. .WithMany()
  2877. .HasForeignKey("nextStepId")
  2878. .OnDelete(DeleteBehavior.NoAction)
  2879. .IsRequired();
  2880. b.Navigation("nextStep");
  2881. b.Navigation("Step");
  2882. });
  2883. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Workflow", b =>
  2884. {
  2885. b.HasOne("wispro.sp.entity.Staff", "CreateUser")
  2886. .WithMany()
  2887. .HasForeignKey("CreateUserId")
  2888. .OnDelete(DeleteBehavior.Cascade)
  2889. .IsRequired();
  2890. b.HasOne("wispro.sp.entity.workflowDefine.Action", "InitAction")
  2891. .WithMany()
  2892. .HasForeignKey("InitActionId")
  2893. .OnDelete(DeleteBehavior.NoAction)
  2894. .IsRequired();
  2895. b.Navigation("CreateUser");
  2896. b.Navigation("InitAction");
  2897. });
  2898. modelBuilder.Entity("wispro.sp.entity.workflowInstance.InputValue", b =>
  2899. {
  2900. b.HasOne("wispro.sp.entity.workflowDefine.InputValueSetting", "valueSetting")
  2901. .WithMany()
  2902. .HasForeignKey("valueSettingId")
  2903. .OnDelete(DeleteBehavior.Cascade)
  2904. .IsRequired();
  2905. b.HasOne("wispro.sp.entity.workflowInstance.WorkflowInstance", "workflowInstance")
  2906. .WithMany()
  2907. .HasForeignKey("workflowInstanceId")
  2908. .OnDelete(DeleteBehavior.Cascade)
  2909. .IsRequired();
  2910. b.Navigation("valueSetting");
  2911. b.Navigation("workflowInstance");
  2912. });
  2913. modelBuilder.Entity("wispro.sp.entity.workflowInstance.StepInstance", b =>
  2914. {
  2915. b.HasOne("wispro.sp.entity.workflowDefine.Step", "Step")
  2916. .WithMany()
  2917. .HasForeignKey("stepId")
  2918. .OnDelete(DeleteBehavior.Cascade)
  2919. .IsRequired();
  2920. b.HasOne("wispro.sp.entity.workflowInstance.WorkflowInstance", "workflowInstance")
  2921. .WithMany()
  2922. .HasForeignKey("workflowInstanceId")
  2923. .OnDelete(DeleteBehavior.NoAction)
  2924. .IsRequired();
  2925. b.Navigation("Step");
  2926. b.Navigation("workflowInstance");
  2927. });
  2928. modelBuilder.Entity("wispro.sp.entity.workflowInstance.WorkflowInstance", b =>
  2929. {
  2930. b.HasOne("wispro.sp.entity.workflowDefine.Workflow", "workflow")
  2931. .WithMany()
  2932. .HasForeignKey("workflowId")
  2933. .OnDelete(DeleteBehavior.Cascade)
  2934. .IsRequired();
  2935. b.Navigation("workflow");
  2936. });
  2937. modelBuilder.Entity("wispro.sp.entity.AppealRecord", b =>
  2938. {
  2939. b.Navigation("AttachFiles");
  2940. });
  2941. modelBuilder.Entity("wispro.sp.entity.CalMonth", b =>
  2942. {
  2943. b.Navigation("PerformanceItems");
  2944. });
  2945. modelBuilder.Entity("wispro.sp.entity.Customer", b =>
  2946. {
  2947. b.Navigation("PerformanceItems");
  2948. });
  2949. modelBuilder.Entity("wispro.sp.entity.InputField", b =>
  2950. {
  2951. b.Navigation("SelectValues");
  2952. });
  2953. modelBuilder.Entity("wispro.sp.entity.Message", b =>
  2954. {
  2955. b.Navigation("RelatedItem");
  2956. b.Navigation("To");
  2957. });
  2958. modelBuilder.Entity("wispro.sp.entity.PerformanceItem", b =>
  2959. {
  2960. b.Navigation("ItemStaffs");
  2961. });
  2962. modelBuilder.Entity("wispro.sp.entity.Staff", b =>
  2963. {
  2964. b.Navigation("Customers");
  2965. b.Navigation("ItemStaffs");
  2966. b.Navigation("Positions");
  2967. b.Navigation("ReviewerItems");
  2968. });
  2969. modelBuilder.Entity("wispro.sp.entity.StaffGrade", b =>
  2970. {
  2971. b.Navigation("Staff");
  2972. b.Navigation("VerifyCoefficientCheckers");
  2973. b.Navigation("VerifyCoefficientDoPeople");
  2974. });
  2975. modelBuilder.Entity("wispro.sp.entity.workflowDefine.Action", b =>
  2976. {
  2977. b.Navigation("inputValuesSettings");
  2978. });
  2979. #pragma warning restore 612, 618
  2980. }
  2981. }
  2982. }