|
@@ -554,7 +554,12 @@ public class DownloadServiceImpl implements DownloadService {
|
|
|
authData.add("");
|
|
|
}
|
|
|
authData.add(club.getAuthenticationStatus());
|
|
|
- authData.add(club.getStatus() + "");
|
|
|
+ if(null!=club.getStatus()&&club.getStatus()==1){
|
|
|
+ authData.add("启用");
|
|
|
+
|
|
|
+ }else if(null!=club.getStatus()&&club.getStatus()==1){
|
|
|
+ authData.add("停用");
|
|
|
+ }
|
|
|
for (int j = 0; j < authData.size(); j++) {
|
|
|
XSSFCell authCell = authRow.createCell(j);
|
|
|
authCell.setCellStyle(customCellStyle);
|