Commit 18dcca3c authored by Quxl's avatar Quxl

x

parent 1d5979a1
...@@ -114,20 +114,23 @@ public class ExportServiceImpl implements ExportService { ...@@ -114,20 +114,23 @@ public class ExportServiceImpl implements ExportService {
private static final Map<String, String> filmMedium = new HashMap<String, String>(); private static final Map<String, String> filmMedium = new HashMap<String, String>();
static { static {
filmMedium.put("0", "否"); filmMedium.put("1", "彩色");
filmMedium.put("1", "是"); filmMedium.put("2", "黑白");
filmMedium.put("3", "彩色+黑白");
} }
private static final Map<String, String> filmFormat = new HashMap<String, String>(); private static final Map<String, String> filmFormat = new HashMap<String, String>();
static { static {
filmFormat.put("0", "否"); filmFormat.put("1", "移动存储");
filmFormat.put("1", "是"); filmFormat.put("2", "在线连接");
} }
private static final Map<String, String> playShanghai = new HashMap<String, String>(); private static final Map<String, String> playShanghai = new HashMap<String, String>();
static { static {
playShanghai.put("0", "否"); playShanghai.put("1", "世界首映");
playShanghai.put("1", "是"); playShanghai.put("2", "国籍首映");
playShanghai.put("3", "亚洲首映");
playShanghai.put("4", "中国首映");
} }
private List<Map<String, Object>> queryFilmDataList() { private List<Map<String, Object>> queryFilmDataList() {
......
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