OpenCommonResult.php 147 B

123456789101112131415
  1. <?php
  2. /**
  3. * 结果模型
  4. * @author auto create
  5. */
  6. class OpenCommonResult
  7. {
  8. /**
  9. * 结果:Y 成功, N 失败
  10. **/
  11. public $result;
  12. }
  13. ?>