You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.7 KiB
81 lines
1.7 KiB
1 year ago
|
package com.zc.business.domain;
|
||
|
|
||
|
import com.zc.business.enums.BoardIconEnum;
|
||
|
|
||
|
/**
|
||
|
* @Description
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/2/27 17:07
|
||
|
*/
|
||
|
public class DcBoardImgLane {
|
||
|
|
||
|
//第一车道
|
||
|
private BoardIconEnum firstLane;
|
||
|
|
||
|
//第二车道
|
||
|
private BoardIconEnum secondLane;
|
||
|
|
||
|
//第三车道
|
||
|
private BoardIconEnum thirdLane;
|
||
|
|
||
|
//第四车道
|
||
|
private BoardIconEnum fourthLane;
|
||
|
|
||
|
//应急车道
|
||
|
private BoardIconEnum emergencyLane;
|
||
|
|
||
|
|
||
|
public BoardIconEnum getFirstLane() {
|
||
|
return firstLane;
|
||
|
}
|
||
|
|
||
|
public void setFirstLane(BoardIconEnum firstLane) {
|
||
|
this.firstLane = firstLane;
|
||
|
}
|
||
|
|
||
|
public BoardIconEnum getSecondLane() {
|
||
|
return secondLane;
|
||
|
}
|
||
|
|
||
|
public void setSecondLane(BoardIconEnum secondLane) {
|
||
|
this.secondLane = secondLane;
|
||
|
}
|
||
|
|
||
|
public BoardIconEnum getThirdLane() {
|
||
|
return thirdLane;
|
||
|
}
|
||
|
|
||
|
public void setThirdLane(BoardIconEnum thirdLane) {
|
||
|
this.thirdLane = thirdLane;
|
||
|
}
|
||
|
|
||
|
public BoardIconEnum getFourthLane() {
|
||
|
return fourthLane;
|
||
|
}
|
||
|
|
||
|
public void setFourthLane(BoardIconEnum fourthLane) {
|
||
|
this.fourthLane = fourthLane;
|
||
|
}
|
||
|
|
||
|
public BoardIconEnum getEmergencyLane() {
|
||
|
return emergencyLane;
|
||
|
}
|
||
|
|
||
|
public void setEmergencyLane(BoardIconEnum emergencyLane) {
|
||
|
this.emergencyLane = emergencyLane;
|
||
|
}
|
||
|
|
||
|
public DcBoardImgLane(){};
|
||
|
|
||
|
public DcBoardImgLane(BoardIconEnum firstLane, BoardIconEnum secondLane, BoardIconEnum thirdLane, BoardIconEnum fourthLane, BoardIconEnum emergencyLane){
|
||
|
this.firstLane = firstLane;
|
||
|
this.secondLane = secondLane;
|
||
|
this.thirdLane = thirdLane;
|
||
|
this.fourthLane = fourthLane;
|
||
|
this.emergencyLane = emergencyLane;
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|