示例#1
0
文件: Bill.php 项目: xama5/uver-erp
 /**
  * Declares an association between this object and a ChildTask object.
  *
  * @param  ChildTask $v
  * @return $this|\Bill The current object (for fluent API support)
  * @throws PropelException
  */
 public function setTask(ChildTask $v = null)
 {
     if ($v === null) {
         $this->setTaskId(NULL);
     } else {
         $this->setTaskId($v->getId());
     }
     $this->aTask = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildTask object, it will not be re-added.
     if ($v !== null) {
         $v->addBill($this);
     }
     return $this;
 }