Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 328 Bytes

Types.md

File metadata and controls

10 lines (9 loc) · 328 Bytes

Doctrine filed types

  • decimal

      /**
       * @var int
       *
       * @ORM\Column(name="longitude", type="decimal", precision=8, scale=4, options={"comment":"经度"})
       */
      private $longitude;
    
  • 官方文档