2

嗨,我创建的应用程序的表是列之一,不能为空。当我坚持价值为 0 时。该学说将其作为空值保存到数据库中。我正在尝试在我的代码中保存列 sort_id 值。如何将 0 值保存为 0 整数值?

这是我的代码

  namespace cms\models\Entities;

  use \cms\Doctrine\ORM\Mapping as ORM; 
  use \cms\Doctrine;
  use \cms\models\Entities; 
  /**
  * @Entity
  * @Table(name="vkladki")
  */
  class Vkladki{
    /**
     * @Id
     * @Column(type="integer")
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id; 

    /**
     * @Column(type="string", length=255)
     */
    protected $title;

    /**
     * @Column(type="integer")
     */
    protected $cat_id;  

    /**
     * @var integer
     * @Column(type="integer", nullable=false)
     */
    protected $sort_id;  

 public function setSortId( $sort_id){
        $this->sort_id = $sort_id;
    } 
4

0 回答 0