Section.php 216 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 文章内容,最大支持10个文章段落
  4. * @author auto create
  5. */
  6. class Section
  7. {
  8. /**
  9. * 段落模板KEY
  10. **/
  11. public $msg_key;
  12. /**
  13. * 段落模板参数
  14. **/
  15. public $msg_param;
  16. }
  17. ?>