1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * 文章对象
- * @author auto create
- */
- class ArticleCreateDTO
- {
-
- /**
- * 文章id
- **/
- public $article_id;
-
- /**
- * html码
- **/
- public $content;
-
- /**
- * 摘要
- **/
- public $digest;
-
- /**
- * 封面图
- **/
- public $thumb_media_id;
-
- /**
- * 标题
- **/
- public $title;
- }
- ?>
|