del_Ins_MissEventInfo.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. /**
  8. * Description of MissEventInfo
  9. *
  10. * @author jgao
  11. */
  12. class MissEventInfo {
  13. //put your code here
  14. /**
  15. * 事件码
  16. * @var type
  17. */
  18. public $evnCode = 0;
  19. /**
  20. * 操作模式
  21. * @var type
  22. */
  23. public $ope = "set";
  24. /**
  25. * 计数值
  26. * @var type
  27. */
  28. public $val = 0;
  29. /**
  30. * 参数集
  31. * @var type
  32. */
  33. public $paras = array();
  34. /**
  35. * 构造方法
  36. * @param type $evn 事件码
  37. * @param type $ope 操作模式(inc递增;add增加;set设置;max取最大值)
  38. * @param type $val 数值
  39. * @param array $paras 参数表
  40. */
  41. public function __construct($evn, $ope, $val, $paras=array()) {
  42. $this->evnCode = $evn;
  43. $this->ope = $ope;
  44. $this->val = $val;
  45. $this->paras = $paras;
  46. }
  47. }