Commit 58b72822 authored by 王晓旭's avatar 王晓旭
parents de158f57 a03e5820
...@@ -60,12 +60,12 @@ public class WindowEntity extends WindowVo { ...@@ -60,12 +60,12 @@ public class WindowEntity extends WindowVo {
/** /**
* 红旗窗口 (1.是,0.否) * 红旗窗口 (1.是,0.否)
*/ */
//@Excel(name = "红旗窗口",combo={"是","否"}, readConverterExp = "1=是,0=否") @Excel(name = "红旗窗口",combo={"是","否"}, readConverterExp = "1=是,0=否")
private Integer hongqi; private Integer hongqi;
/** /**
* 无人值守(1.是) * 无人值守(1.是)
*/ */
//@Excel(name = "无人值守",combo={"是","否"}, readConverterExp = "1=是,0=否") @Excel(name = "无人值守",combo={"是","否"}, readConverterExp = "1=是,0=否")
private Integer duty; private Integer duty;
/** /**
* 显示内容 * 显示内容
...@@ -84,12 +84,12 @@ public class WindowEntity extends WindowVo { ...@@ -84,12 +84,12 @@ public class WindowEntity extends WindowVo {
/** /**
* 楼栋 * 楼栋
*/ */
@Excel(name = "楼栋") @Excel(name = "楼栋",cellType= Excel.ColumnType.NUMERIC)
private Integer building; private Integer building;
/** /**
* 楼层 * 楼层
*/ */
@Excel(name = "楼层") @Excel(name = "楼层",cellType= Excel.ColumnType.NUMERIC)
private Integer level; private Integer level;
/** /**
* 名称描述 * 名称描述
......
...@@ -59,6 +59,15 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe ...@@ -59,6 +59,15 @@ public class WindowController extends BaseCRUDJsonBodyMappingController<WindowSe
super.setModuleDesc("站点部门窗口"); super.setModuleDesc("站点部门窗口");
} }
/**
*
*/
@Override
@UnAuth
public void downloadTemplate() {
super.downloadTemplate();
}
@Override @Override
protected void init(Map<String, Object> model, Context context) { protected void init(Map<String, Object> model, Context context) {
this.addDict(model, "hongqi", paramService.getParamBySecondOrganize("Window", "hongqi")); this.addDict(model, "hongqi", paramService.getParamBySecondOrganize("Window", "hongqi"));
......
...@@ -84,6 +84,16 @@ public class WorkmanController extends BaseCRUDJsonBodyMappingController<Workman ...@@ -84,6 +84,16 @@ public class WorkmanController extends BaseCRUDJsonBodyMappingController<Workman
super.init(model, context); super.init(model, context);
} }
/**
*
*/
@Override
@UnAuth
public void downloadTemplate() {
super.downloadTemplate();
}
/** /**
* 工作人员登录 * 工作人员登录
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment