zoujiajian há 2 anos atrás
pai
commit
f32f579d66

+ 1 - 1
netflix-dao/src/main/java/com/cyksj/model/views/CorpFollowActiveCodeView.java

@@ -36,7 +36,7 @@ public class CorpFollowActiveCodeView {
 	private String followStr;
 
 	@DbIgnore
-	private List<String> followIds;
+	private List<Integer> userIndxList;
 
 	/**
 	 * 欢迎语内容 文本、附件

+ 1 - 1
netflix-web/src/main/java/com/cyksj/web/controller/manage/corp/CmsCorpFollowActiveCodeController.java

@@ -153,7 +153,7 @@ public class CmsCorpFollowActiveCodeController {
 			Integer orderNum = orderDonMapper.selectCountActiveCodeOrderByAcId(data.getId());
 			data.setOrderNum(orderNum);
 			try {
-				data.setFollowIds(Jsons.parseList(data.getFollowStr(), String.class));
+				data.setUserIndxList(Jsons.parseList(data.getFollowStr(), Integer.class));
 				if (StrUtil.isNotBlank(data.getAttachmentsStr())) {
 					data.setAttachments(Jsons.parseList(data.getAttachmentsStr(), Attachments.class));
 				}