对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | /** |
| | | * @author : jingjy |
| | | * @date : 2021/6/16 16:43 |
| | | */ |
| | | public class NoEntryVo { |
| | | private String directionCode; |
| | | |
| | | private String name; |
| | | |
| | | private Integer number; |
| | | |
| | | public String getDirectionCode() { |
| | | return directionCode; |
| | | } |
| | | |
| | | public void setDirectionCode(String directionCode) { |
| | | this.directionCode = directionCode; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public Integer getNumber() { |
| | | return number; |
| | | } |
| | | |
| | | public void setNumber(Integer number) { |
| | | this.number = number; |
| | | } |
| | | } |