EntityCondition.php 245 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 实体条件
  4. * @author auto create
  5. */
  6. class EntityCondition
  7. {
  8. /**
  9. * 实体ID列表
  10. **/
  11. public $entity_ids;
  12. /**
  13. * 实体来源
  14. **/
  15. public $entity_source;
  16. /**
  17. * 实体类型
  18. **/
  19. public $entity_type;
  20. }
  21. ?>