Skip to content

Commit

Permalink
参数顺序调整
Browse files Browse the repository at this point in the history
  • Loading branch information
CJayHe committed Apr 9, 2024
1 parent 1300930 commit d568ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Entity/Area.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static function getLevels()
#[ORM\Column(name: "name", type: "string", length: 45, options: ["comment" => "区域名称"])]
private ?string $name = null;

#[ORM\Column(name: "first_letter", type: "string", nullable: true, length: 1, options: ["fixed" => true, "comment" => "区域名称首字母"])]
#[ORM\Column(name: "first_letter", type: "string", length: 1, nullable: true, options: ["fixed" => true, "comment" => "区域名称首字母"])]
private ?string $firstLetter = null;

#[ORM\Column(name: "level", type: "smallint", options: ["default" => 0, "comment" => "数据层级"])]
Expand Down

0 comments on commit d568ce5

Please sign in to comment.