PdmStopTarge.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. package com.ruoyi.powerdistribution.domain;
  2. import java.math.BigDecimal;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 停电预算对象 pdm_stop_targe
  9. *
  10. * @author ruoyi
  11. * @date 2024-12-09
  12. */
  13. public class PdmStopTarge extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** $column.columnComment */
  17. private Long id;
  18. /** 年 */
  19. @Excel(name = "年")
  20. private String reportYear;
  21. /** 单位编码 */
  22. @Excel(name = "单位编码")
  23. private String companyNo;
  24. /** 单位名称 */
  25. @Excel(name = "单位名称")
  26. private String companyName;
  27. /** 平均停电时长目标 */
  28. @Excel(name = "平均停电时长目标")
  29. private BigDecimal stopTimeAvg;
  30. /** 等效总用户数 */
  31. @Excel(name = "等效总用户数")
  32. private BigDecimal userTotal;
  33. /** 停电总时长目标 */
  34. @Excel(name = "停电总时长目标")
  35. private BigDecimal stopTimeTotal;
  36. /** 3年占比 */
  37. @Excel(name = "3年占比")
  38. private String threeYearRatio;
  39. /** 预安排停电总时长目标 */
  40. @Excel(name = "预安排停电总时长目标")
  41. private BigDecimal planStopTimeTotal;
  42. /** 预安排平均停电时长目标 */
  43. @Excel(name = "预安排平均停电时长目标")
  44. private BigDecimal planStopTimeAvg;
  45. /** 故障停电总时长目标 */
  46. @Excel(name = "故障停电总时长目标")
  47. private BigDecimal errorStopTimeTotal;
  48. /** 故障平均停电时长目标 */
  49. @Excel(name = "故障平均停电时长目标")
  50. private BigDecimal errorStopTimeAvg;
  51. /** 停电月度时长-1月 */
  52. @Excel(name = "停电月度时长-1月")
  53. private BigDecimal stopTimeMonth01;
  54. /** 停电月度时长-2月 */
  55. @Excel(name = "停电月度时长-2月")
  56. private BigDecimal stopTimeMonth02;
  57. /** 停电月度时长-3月 */
  58. @Excel(name = "停电月度时长-3月")
  59. private BigDecimal stopTimeMonth03;
  60. /** 停电月度时长-4月 */
  61. @Excel(name = "停电月度时长-4月")
  62. private BigDecimal stopTimeMonth04;
  63. /** 停电月度时长-5月 */
  64. @Excel(name = "停电月度时长-5月")
  65. private BigDecimal stopTimeMonth05;
  66. /** 停电月度时长-6月 */
  67. @Excel(name = "停电月度时长-6月")
  68. private BigDecimal stopTimeMonth06;
  69. /** 停电月度时长-7月 */
  70. @Excel(name = "停电月度时长-7月")
  71. private BigDecimal stopTimeMonth07;
  72. /** 停电月度时长-8月 */
  73. @Excel(name = "停电月度时长-8月")
  74. private BigDecimal stopTimeMonth08;
  75. /** 停电月度时长-9月 */
  76. @Excel(name = "停电月度时长-9月")
  77. private BigDecimal stopTimeMonth09;
  78. /** 停电月度时长-10月 */
  79. @Excel(name = "停电月度时长-10月")
  80. private BigDecimal stopTimeMonth10;
  81. /** 停电月度时长-11月 */
  82. @Excel(name = "停电月度时长-11月")
  83. private BigDecimal stopTimeMonth11;
  84. /** 停电月度时长-12月 */
  85. @Excel(name = "停电月度时长-12月")
  86. private BigDecimal stopTimeMonth12;
  87. /** 预安排停电月度时长-1月 */
  88. @Excel(name = "预安排停电月度时长-1月")
  89. private BigDecimal planStopTimeMonth01;
  90. /** 预安排停电月度时长-2月 */
  91. @Excel(name = "预安排停电月度时长-2月")
  92. private BigDecimal planStopTimeMonth02;
  93. /** 预安排停电月度时长-3月 */
  94. @Excel(name = "预安排停电月度时长-3月")
  95. private BigDecimal planStopTimeMonth03;
  96. /** 预安排停电月度时长-4月 */
  97. @Excel(name = "预安排停电月度时长-4月")
  98. private BigDecimal planStopTimeMonth04;
  99. /** 预安排停电月度时长-5月 */
  100. @Excel(name = "预安排停电月度时长-5月")
  101. private BigDecimal planStopTimeMonth05;
  102. /** 预安排停电月度时长-6月 */
  103. @Excel(name = "预安排停电月度时长-6月")
  104. private BigDecimal planStopTimeMonth06;
  105. /** 预安排停电月度时长-7月 */
  106. @Excel(name = "预安排停电月度时长-7月")
  107. private BigDecimal planStopTimeMonth07;
  108. /** 预安排停电月度时长-8月 */
  109. @Excel(name = "预安排停电月度时长-8月")
  110. private BigDecimal planStopTimeMonth08;
  111. /** 预安排停电月度时长-9月 */
  112. @Excel(name = "预安排停电月度时长-9月")
  113. private BigDecimal planStopTimeMonth09;
  114. /** 预安排停电月度时长-10月 */
  115. @Excel(name = "预安排停电月度时长-10月")
  116. private BigDecimal planStopTimeMonth10;
  117. /** 预安排停电月度时长-11月 */
  118. @Excel(name = "预安排停电月度时长-11月")
  119. private BigDecimal planStopTimeMonth11;
  120. /** 预安排停电月度时长-12月 */
  121. @Excel(name = "预安排停电月度时长-12月")
  122. private BigDecimal planStopTimeMonth12;
  123. /** 故障停电月度时长-1月 */
  124. @Excel(name = "故障停电月度时长-1月")
  125. private BigDecimal errorStopTimeMonth01;
  126. /** 故障停电月度时长-2月 */
  127. @Excel(name = "故障停电月度时长-2月")
  128. private BigDecimal errorStopTimeMonth02;
  129. /** 故障停电月度时长-3月 */
  130. @Excel(name = "故障停电月度时长-3月")
  131. private BigDecimal errorStopTimeMonth03;
  132. /** 故障停电月度时长-4月 */
  133. @Excel(name = "故障停电月度时长-4月")
  134. private BigDecimal errorStopTimeMonth04;
  135. /** 故障停电月度时长-5月 */
  136. @Excel(name = "故障停电月度时长-5月")
  137. private BigDecimal errorStopTimeMonth05;
  138. /** 故障停电月度时长-6月 */
  139. @Excel(name = "故障停电月度时长-6月")
  140. private BigDecimal errorStopTimeMonth06;
  141. /** 故障停电月度时长-7月 */
  142. @Excel(name = "故障停电月度时长-7月")
  143. private BigDecimal errorStopTimeMonth07;
  144. /** 故障停电月度时长-8月 */
  145. @Excel(name = "故障停电月度时长-8月")
  146. private BigDecimal errorStopTimeMonth08;
  147. /** 故障停电月度时长-9月 */
  148. @Excel(name = "故障停电月度时长-9月")
  149. private BigDecimal errorStopTimeMonth09;
  150. /** 故障停电月度时长-10月 */
  151. @Excel(name = "故障停电月度时长-10月")
  152. private BigDecimal errorStopTimeMonth10;
  153. /** 故障停电月度时长-11月 */
  154. @Excel(name = "故障停电月度时长-11月")
  155. private BigDecimal errorStopTimeMonth11;
  156. /** 故障停电月度时长-12月 */
  157. @Excel(name = "故障停电月度时长-12月")
  158. private BigDecimal errorStopTimeMonth12;
  159. public void setId(Long id)
  160. {
  161. this.id = id;
  162. }
  163. public Long getId()
  164. {
  165. return id;
  166. }
  167. public void setReportYear(String reportYear)
  168. {
  169. this.reportYear = reportYear;
  170. }
  171. public String getReportYear()
  172. {
  173. return reportYear;
  174. }
  175. public void setCompanyNo(String companyNo)
  176. {
  177. this.companyNo = companyNo;
  178. }
  179. public String getCompanyNo()
  180. {
  181. return companyNo;
  182. }
  183. public void setCompanyName(String companyName)
  184. {
  185. this.companyName = companyName;
  186. }
  187. public String getCompanyName()
  188. {
  189. return companyName;
  190. }
  191. public void setStopTimeAvg(BigDecimal stopTimeAvg)
  192. {
  193. this.stopTimeAvg = stopTimeAvg;
  194. }
  195. public BigDecimal getStopTimeAvg()
  196. {
  197. return stopTimeAvg;
  198. }
  199. public void setUserTotal(BigDecimal userTotal)
  200. {
  201. this.userTotal = userTotal;
  202. }
  203. public BigDecimal getUserTotal()
  204. {
  205. return userTotal;
  206. }
  207. public void setStopTimeTotal(BigDecimal stopTimeTotal)
  208. {
  209. this.stopTimeTotal = stopTimeTotal;
  210. }
  211. public BigDecimal getStopTimeTotal()
  212. {
  213. return stopTimeTotal;
  214. }
  215. public void setThreeYearRatio(String threeYearRatio)
  216. {
  217. this.threeYearRatio = threeYearRatio;
  218. }
  219. public String getThreeYearRatio()
  220. {
  221. return threeYearRatio;
  222. }
  223. public void setPlanStopTimeTotal(BigDecimal planStopTimeTotal)
  224. {
  225. this.planStopTimeTotal = planStopTimeTotal;
  226. }
  227. public BigDecimal getPlanStopTimeTotal()
  228. {
  229. return planStopTimeTotal;
  230. }
  231. public void setPlanStopTimeAvg(BigDecimal planStopTimeAvg)
  232. {
  233. this.planStopTimeAvg = planStopTimeAvg;
  234. }
  235. public BigDecimal getPlanStopTimeAvg()
  236. {
  237. return planStopTimeAvg;
  238. }
  239. public void setErrorStopTimeTotal(BigDecimal errorStopTimeTotal)
  240. {
  241. this.errorStopTimeTotal = errorStopTimeTotal;
  242. }
  243. public BigDecimal getErrorStopTimeTotal()
  244. {
  245. return errorStopTimeTotal;
  246. }
  247. public void setErrorStopTimeAvg(BigDecimal errorStopTimeAvg)
  248. {
  249. this.errorStopTimeAvg = errorStopTimeAvg;
  250. }
  251. public BigDecimal getErrorStopTimeAvg()
  252. {
  253. return errorStopTimeAvg;
  254. }
  255. public void setStopTimeMonth01(BigDecimal stopTimeMonth01)
  256. {
  257. this.stopTimeMonth01 = stopTimeMonth01;
  258. }
  259. public BigDecimal getStopTimeMonth01()
  260. {
  261. return stopTimeMonth01;
  262. }
  263. public void setStopTimeMonth02(BigDecimal stopTimeMonth02)
  264. {
  265. this.stopTimeMonth02 = stopTimeMonth02;
  266. }
  267. public BigDecimal getStopTimeMonth02()
  268. {
  269. return stopTimeMonth02;
  270. }
  271. public void setStopTimeMonth03(BigDecimal stopTimeMonth03)
  272. {
  273. this.stopTimeMonth03 = stopTimeMonth03;
  274. }
  275. public BigDecimal getStopTimeMonth03()
  276. {
  277. return stopTimeMonth03;
  278. }
  279. public void setStopTimeMonth04(BigDecimal stopTimeMonth04)
  280. {
  281. this.stopTimeMonth04 = stopTimeMonth04;
  282. }
  283. public BigDecimal getStopTimeMonth04()
  284. {
  285. return stopTimeMonth04;
  286. }
  287. public void setStopTimeMonth05(BigDecimal stopTimeMonth05)
  288. {
  289. this.stopTimeMonth05 = stopTimeMonth05;
  290. }
  291. public BigDecimal getStopTimeMonth05()
  292. {
  293. return stopTimeMonth05;
  294. }
  295. public void setStopTimeMonth06(BigDecimal stopTimeMonth06)
  296. {
  297. this.stopTimeMonth06 = stopTimeMonth06;
  298. }
  299. public BigDecimal getStopTimeMonth06()
  300. {
  301. return stopTimeMonth06;
  302. }
  303. public void setStopTimeMonth07(BigDecimal stopTimeMonth07)
  304. {
  305. this.stopTimeMonth07 = stopTimeMonth07;
  306. }
  307. public BigDecimal getStopTimeMonth07()
  308. {
  309. return stopTimeMonth07;
  310. }
  311. public void setStopTimeMonth08(BigDecimal stopTimeMonth08)
  312. {
  313. this.stopTimeMonth08 = stopTimeMonth08;
  314. }
  315. public BigDecimal getStopTimeMonth08()
  316. {
  317. return stopTimeMonth08;
  318. }
  319. public void setStopTimeMonth09(BigDecimal stopTimeMonth09)
  320. {
  321. this.stopTimeMonth09 = stopTimeMonth09;
  322. }
  323. public BigDecimal getStopTimeMonth09()
  324. {
  325. return stopTimeMonth09;
  326. }
  327. public void setStopTimeMonth10(BigDecimal stopTimeMonth10)
  328. {
  329. this.stopTimeMonth10 = stopTimeMonth10;
  330. }
  331. public BigDecimal getStopTimeMonth10()
  332. {
  333. return stopTimeMonth10;
  334. }
  335. public void setStopTimeMonth11(BigDecimal stopTimeMonth11)
  336. {
  337. this.stopTimeMonth11 = stopTimeMonth11;
  338. }
  339. public BigDecimal getStopTimeMonth11()
  340. {
  341. return stopTimeMonth11;
  342. }
  343. public void setStopTimeMonth12(BigDecimal stopTimeMonth12)
  344. {
  345. this.stopTimeMonth12 = stopTimeMonth12;
  346. }
  347. public BigDecimal getStopTimeMonth12()
  348. {
  349. return stopTimeMonth12;
  350. }
  351. public void setPlanStopTimeMonth01(BigDecimal planStopTimeMonth01)
  352. {
  353. this.planStopTimeMonth01 = planStopTimeMonth01;
  354. }
  355. public BigDecimal getPlanStopTimeMonth01()
  356. {
  357. return planStopTimeMonth01;
  358. }
  359. public void setPlanStopTimeMonth02(BigDecimal planStopTimeMonth02)
  360. {
  361. this.planStopTimeMonth02 = planStopTimeMonth02;
  362. }
  363. public BigDecimal getPlanStopTimeMonth02()
  364. {
  365. return planStopTimeMonth02;
  366. }
  367. public void setPlanStopTimeMonth03(BigDecimal planStopTimeMonth03)
  368. {
  369. this.planStopTimeMonth03 = planStopTimeMonth03;
  370. }
  371. public BigDecimal getPlanStopTimeMonth03()
  372. {
  373. return planStopTimeMonth03;
  374. }
  375. public void setPlanStopTimeMonth04(BigDecimal planStopTimeMonth04)
  376. {
  377. this.planStopTimeMonth04 = planStopTimeMonth04;
  378. }
  379. public BigDecimal getPlanStopTimeMonth04()
  380. {
  381. return planStopTimeMonth04;
  382. }
  383. public void setPlanStopTimeMonth05(BigDecimal planStopTimeMonth05)
  384. {
  385. this.planStopTimeMonth05 = planStopTimeMonth05;
  386. }
  387. public BigDecimal getPlanStopTimeMonth05()
  388. {
  389. return planStopTimeMonth05;
  390. }
  391. public void setPlanStopTimeMonth06(BigDecimal planStopTimeMonth06)
  392. {
  393. this.planStopTimeMonth06 = planStopTimeMonth06;
  394. }
  395. public BigDecimal getPlanStopTimeMonth06()
  396. {
  397. return planStopTimeMonth06;
  398. }
  399. public void setPlanStopTimeMonth07(BigDecimal planStopTimeMonth07)
  400. {
  401. this.planStopTimeMonth07 = planStopTimeMonth07;
  402. }
  403. public BigDecimal getPlanStopTimeMonth07()
  404. {
  405. return planStopTimeMonth07;
  406. }
  407. public void setPlanStopTimeMonth08(BigDecimal planStopTimeMonth08)
  408. {
  409. this.planStopTimeMonth08 = planStopTimeMonth08;
  410. }
  411. public BigDecimal getPlanStopTimeMonth08()
  412. {
  413. return planStopTimeMonth08;
  414. }
  415. public void setPlanStopTimeMonth09(BigDecimal planStopTimeMonth09)
  416. {
  417. this.planStopTimeMonth09 = planStopTimeMonth09;
  418. }
  419. public BigDecimal getPlanStopTimeMonth09()
  420. {
  421. return planStopTimeMonth09;
  422. }
  423. public void setPlanStopTimeMonth10(BigDecimal planStopTimeMonth10)
  424. {
  425. this.planStopTimeMonth10 = planStopTimeMonth10;
  426. }
  427. public BigDecimal getPlanStopTimeMonth10()
  428. {
  429. return planStopTimeMonth10;
  430. }
  431. public void setPlanStopTimeMonth11(BigDecimal planStopTimeMonth11)
  432. {
  433. this.planStopTimeMonth11 = planStopTimeMonth11;
  434. }
  435. public BigDecimal getPlanStopTimeMonth11()
  436. {
  437. return planStopTimeMonth11;
  438. }
  439. public void setPlanStopTimeMonth12(BigDecimal planStopTimeMonth12)
  440. {
  441. this.planStopTimeMonth12 = planStopTimeMonth12;
  442. }
  443. public BigDecimal getPlanStopTimeMonth12()
  444. {
  445. return planStopTimeMonth12;
  446. }
  447. public void setErrorStopTimeMonth01(BigDecimal errorStopTimeMonth01)
  448. {
  449. this.errorStopTimeMonth01 = errorStopTimeMonth01;
  450. }
  451. public BigDecimal getErrorStopTimeMonth01()
  452. {
  453. return errorStopTimeMonth01;
  454. }
  455. public void setErrorStopTimeMonth02(BigDecimal errorStopTimeMonth02)
  456. {
  457. this.errorStopTimeMonth02 = errorStopTimeMonth02;
  458. }
  459. public BigDecimal getErrorStopTimeMonth02()
  460. {
  461. return errorStopTimeMonth02;
  462. }
  463. public void setErrorStopTimeMonth03(BigDecimal errorStopTimeMonth03)
  464. {
  465. this.errorStopTimeMonth03 = errorStopTimeMonth03;
  466. }
  467. public BigDecimal getErrorStopTimeMonth03()
  468. {
  469. return errorStopTimeMonth03;
  470. }
  471. public void setErrorStopTimeMonth04(BigDecimal errorStopTimeMonth04)
  472. {
  473. this.errorStopTimeMonth04 = errorStopTimeMonth04;
  474. }
  475. public BigDecimal getErrorStopTimeMonth04()
  476. {
  477. return errorStopTimeMonth04;
  478. }
  479. public void setErrorStopTimeMonth05(BigDecimal errorStopTimeMonth05)
  480. {
  481. this.errorStopTimeMonth05 = errorStopTimeMonth05;
  482. }
  483. public BigDecimal getErrorStopTimeMonth05()
  484. {
  485. return errorStopTimeMonth05;
  486. }
  487. public void setErrorStopTimeMonth06(BigDecimal errorStopTimeMonth06)
  488. {
  489. this.errorStopTimeMonth06 = errorStopTimeMonth06;
  490. }
  491. public BigDecimal getErrorStopTimeMonth06()
  492. {
  493. return errorStopTimeMonth06;
  494. }
  495. public void setErrorStopTimeMonth07(BigDecimal errorStopTimeMonth07)
  496. {
  497. this.errorStopTimeMonth07 = errorStopTimeMonth07;
  498. }
  499. public BigDecimal getErrorStopTimeMonth07()
  500. {
  501. return errorStopTimeMonth07;
  502. }
  503. public void setErrorStopTimeMonth08(BigDecimal errorStopTimeMonth08)
  504. {
  505. this.errorStopTimeMonth08 = errorStopTimeMonth08;
  506. }
  507. public BigDecimal getErrorStopTimeMonth08()
  508. {
  509. return errorStopTimeMonth08;
  510. }
  511. public void setErrorStopTimeMonth09(BigDecimal errorStopTimeMonth09)
  512. {
  513. this.errorStopTimeMonth09 = errorStopTimeMonth09;
  514. }
  515. public BigDecimal getErrorStopTimeMonth09()
  516. {
  517. return errorStopTimeMonth09;
  518. }
  519. public void setErrorStopTimeMonth10(BigDecimal errorStopTimeMonth10)
  520. {
  521. this.errorStopTimeMonth10 = errorStopTimeMonth10;
  522. }
  523. public BigDecimal getErrorStopTimeMonth10()
  524. {
  525. return errorStopTimeMonth10;
  526. }
  527. public void setErrorStopTimeMonth11(BigDecimal errorStopTimeMonth11)
  528. {
  529. this.errorStopTimeMonth11 = errorStopTimeMonth11;
  530. }
  531. public BigDecimal getErrorStopTimeMonth11()
  532. {
  533. return errorStopTimeMonth11;
  534. }
  535. public void setErrorStopTimeMonth12(BigDecimal errorStopTimeMonth12)
  536. {
  537. this.errorStopTimeMonth12 = errorStopTimeMonth12;
  538. }
  539. public BigDecimal getErrorStopTimeMonth12()
  540. {
  541. return errorStopTimeMonth12;
  542. }
  543. @Override
  544. public String toString() {
  545. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  546. .append("id", getId())
  547. .append("reportYear", getReportYear())
  548. .append("companyNo", getCompanyNo())
  549. .append("companyName", getCompanyName())
  550. .append("stopTimeAvg", getStopTimeAvg())
  551. .append("userTotal", getUserTotal())
  552. .append("stopTimeTotal", getStopTimeTotal())
  553. .append("threeYearRatio", getThreeYearRatio())
  554. .append("planStopTimeTotal", getPlanStopTimeTotal())
  555. .append("planStopTimeAvg", getPlanStopTimeAvg())
  556. .append("errorStopTimeTotal", getErrorStopTimeTotal())
  557. .append("errorStopTimeAvg", getErrorStopTimeAvg())
  558. .append("stopTimeMonth01", getStopTimeMonth01())
  559. .append("stopTimeMonth02", getStopTimeMonth02())
  560. .append("stopTimeMonth03", getStopTimeMonth03())
  561. .append("stopTimeMonth04", getStopTimeMonth04())
  562. .append("stopTimeMonth05", getStopTimeMonth05())
  563. .append("stopTimeMonth06", getStopTimeMonth06())
  564. .append("stopTimeMonth07", getStopTimeMonth07())
  565. .append("stopTimeMonth08", getStopTimeMonth08())
  566. .append("stopTimeMonth09", getStopTimeMonth09())
  567. .append("stopTimeMonth10", getStopTimeMonth10())
  568. .append("stopTimeMonth11", getStopTimeMonth11())
  569. .append("stopTimeMonth12", getStopTimeMonth12())
  570. .append("planStopTimeMonth01", getPlanStopTimeMonth01())
  571. .append("planStopTimeMonth02", getPlanStopTimeMonth02())
  572. .append("planStopTimeMonth03", getPlanStopTimeMonth03())
  573. .append("planStopTimeMonth04", getPlanStopTimeMonth04())
  574. .append("planStopTimeMonth05", getPlanStopTimeMonth05())
  575. .append("planStopTimeMonth06", getPlanStopTimeMonth06())
  576. .append("planStopTimeMonth07", getPlanStopTimeMonth07())
  577. .append("planStopTimeMonth08", getPlanStopTimeMonth08())
  578. .append("planStopTimeMonth09", getPlanStopTimeMonth09())
  579. .append("planStopTimeMonth10", getPlanStopTimeMonth10())
  580. .append("planStopTimeMonth11", getPlanStopTimeMonth11())
  581. .append("planStopTimeMonth12", getPlanStopTimeMonth12())
  582. .append("errorStopTimeMonth01", getErrorStopTimeMonth01())
  583. .append("errorStopTimeMonth02", getErrorStopTimeMonth02())
  584. .append("errorStopTimeMonth03", getErrorStopTimeMonth03())
  585. .append("errorStopTimeMonth04", getErrorStopTimeMonth04())
  586. .append("errorStopTimeMonth05", getErrorStopTimeMonth05())
  587. .append("errorStopTimeMonth06", getErrorStopTimeMonth06())
  588. .append("errorStopTimeMonth07", getErrorStopTimeMonth07())
  589. .append("errorStopTimeMonth08", getErrorStopTimeMonth08())
  590. .append("errorStopTimeMonth09", getErrorStopTimeMonth09())
  591. .append("errorStopTimeMonth10", getErrorStopTimeMonth10())
  592. .append("errorStopTimeMonth11", getErrorStopTimeMonth11())
  593. .append("errorStopTimeMonth12", getErrorStopTimeMonth12())
  594. .append("createBy", getCreateBy())
  595. .append("createTime", getCreateTime())
  596. .append("updateBy", getUpdateBy())
  597. .append("updateTime", getUpdateTime())
  598. .toString();
  599. }
  600. }