|
|
|
|
@ -3,6 +3,7 @@ package com.flossom.common.core.domain.ret;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.flossom.common.core.annotation.Excel;
|
|
|
|
|
import com.flossom.common.core.domain.entity.WxModeCombineInfo;
|
|
|
|
|
import com.flossom.common.core.domain.entity.WxModeGear;
|
|
|
|
|
import com.flossom.common.core.domain.entity.WxModeOpenSource;
|
|
|
|
|
import com.flossom.common.core.domain.entity.WxModeServiceInfo;
|
|
|
|
|
|
|
|
|
|
@ -140,6 +141,46 @@ public class WxModeRet {
|
|
|
|
|
|
|
|
|
|
private List<Long> lockCompanyTagArray = new ArrayList<Long>();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 使用技术
|
|
|
|
|
*/
|
|
|
|
|
private String technologyInfo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 模式功效
|
|
|
|
|
*/
|
|
|
|
|
private String effectContent;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* FR200-水分测试 的步骤视频
|
|
|
|
|
*/
|
|
|
|
|
private String stepOneVideo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* FR200-水分测试 的步骤视频
|
|
|
|
|
*/
|
|
|
|
|
private String stepTwoVideo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* FR200-水分测试 的步骤视频
|
|
|
|
|
*/
|
|
|
|
|
private String stepThreeVideo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 换挡时间
|
|
|
|
|
*/
|
|
|
|
|
private List<WxModeGear> modeGear = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 蜂鸣提醒时间
|
|
|
|
|
*/
|
|
|
|
|
private List<WxModeGear> modeBuzzing = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 震动提醒时间
|
|
|
|
|
*/
|
|
|
|
|
private List<WxModeGear> modeVibrate = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
@ -340,4 +381,68 @@ public class WxModeRet {
|
|
|
|
|
public void setModeTimeStr(String modeTimeStr) {
|
|
|
|
|
this.modeTimeStr = modeTimeStr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTechnologyInfo() {
|
|
|
|
|
return technologyInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTechnologyInfo(String technologyInfo) {
|
|
|
|
|
this.technologyInfo = technologyInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getEffectContent() {
|
|
|
|
|
return effectContent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setEffectContent(String effectContent) {
|
|
|
|
|
this.effectContent = effectContent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStepOneVideo() {
|
|
|
|
|
return stepOneVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStepOneVideo(String stepOneVideo) {
|
|
|
|
|
this.stepOneVideo = stepOneVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStepTwoVideo() {
|
|
|
|
|
return stepTwoVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStepTwoVideo(String stepTwoVideo) {
|
|
|
|
|
this.stepTwoVideo = stepTwoVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getStepThreeVideo() {
|
|
|
|
|
return stepThreeVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStepThreeVideo(String stepThreeVideo) {
|
|
|
|
|
this.stepThreeVideo = stepThreeVideo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<WxModeGear> getModeGear() {
|
|
|
|
|
return modeGear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setModeGear(List<WxModeGear> modeGear) {
|
|
|
|
|
this.modeGear = modeGear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<WxModeGear> getModeBuzzing() {
|
|
|
|
|
return modeBuzzing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setModeBuzzing(List<WxModeGear> modeBuzzing) {
|
|
|
|
|
this.modeBuzzing = modeBuzzing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<WxModeGear> getModeVibrate() {
|
|
|
|
|
return modeVibrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setModeVibrate(List<WxModeGear> modeVibrate) {
|
|
|
|
|
this.modeVibrate = modeVibrate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|