Commit 8ff7bd8d authored by suichenguang's avatar suichenguang

搜索接口

parent 910e5d6a
package com.yxproject.start.api; package com.yxproject.start.api;
import com.yxproject.start.entity.SpecialCardInfoEntity; import com.yxproject.start.entity.SpecialCardInfoEntity;
import com.yxproject.start.entity.resp.SelectByAcceptedEntity;
import com.yxproject.start.entity.resp.SelectByGroupNumEntity;
import com.yxproject.start.entity.resp.SelectByIdcardEntity;
import com.yxproject.start.entity.resp.SelectByWorkOrderEntity;
import com.yxproject.start.service.SelectSerialNumberService; import com.yxproject.start.service.SelectSerialNumberService;
import com.yxproject.start.utils.YXJSONResponse; import com.yxproject.start.utils.YXJSONResponse;
import net.sf.json.JSONObject; import net.sf.json.JSONObject;
...@@ -23,28 +27,34 @@ public class selectApi { ...@@ -23,28 +27,34 @@ public class selectApi {
private SelectSerialNumberService selectSerialNumberService; private SelectSerialNumberService selectSerialNumberService;
@RequestMapping(value = "selectByCard") @RequestMapping(value = "selectByCard")
public Map<String,Object> selectByCard(@RequestParam("id") String id, HttpServletResponse resp){ public String selectByCard(@RequestParam("id") String id, HttpServletResponse resp){
resp.setCharacterEncoding("UTF-8"); resp.setCharacterEncoding("UTF-8");
Map<String, Object> map = new HashMap<>(); Map<String, Object> map = new HashMap<>();
switch (id.length()){ switch (id.length()){
case 8: case 8:
SpecialCardInfoEntity specialCardInfo= selectSerialNumberService.selectByGroupNumber(id); System.out.println("id"+id);
SelectByGroupNumEntity specialCardInfo= selectSerialNumberService.selectByGroupNumber(id);
map.put("searchResult",specialCardInfo); map.put("searchResult",specialCardInfo);
break; break;
case 10: case 10:
SpecialCardInfoEntity specialCardInfo2 = selectSerialNumberService.selectByIDCardOrAccepted(id); SelectByAcceptedEntity specialCardInfo2 = selectSerialNumberService.selectByAccepted(id);
map.put("searchResult",specialCardInfo2); map.put("searchResult",specialCardInfo2);
break; break;
case 18: case 18:
SpecialCardInfoEntity specialCardInfo3 = selectSerialNumberService.selectByIDCardOrAccepted(id); SelectByIdcardEntity specialCardInfo3 = selectSerialNumberService.selectByIdCard(id);
map.put("searchResult",specialCardInfo3); map.put("searchResult",specialCardInfo3);
break; break;
case 11: case 11:
SpecialCardInfoEntity specialCardInfo4 = selectSerialNumberService.selectByWorkOrderNumber(id); SelectByWorkOrderEntity specialCardInfo4 = selectSerialNumberService.selectByWorkOrderNumber(id);
map.put("searchResult",specialCardInfo4); map.put("searchResult",specialCardInfo4);
break; break;
} }
JSONObject resultJson = JSONObject.fromObject(map); YXJSONResponse yxjsonResponse = new YXJSONResponse();
return resultJson; resp.setCharacterEncoding("UTF-8");
yxjsonResponse.outPutSuccess(map);
System.out.println("222222222"+ yxjsonResponse.toJSONString());
return yxjsonResponse.toJSONString();
} }
} }
...@@ -8,7 +8,7 @@ import java.util.Objects; ...@@ -8,7 +8,7 @@ import java.util.Objects;
*/ */
@Entity @Entity
@Table(name = "GROUP_NO", schema = "DAHAI") @Table(name = "GROUP_NO", schema = "DAHAI")
public class GroupNoEntity { public class GroupNoEntity{
private long task_Id; private long task_Id;
private String group_No; private String group_No;
private long valid_Count; private long valid_Count;
...@@ -21,7 +21,7 @@ public class GroupNoEntity { ...@@ -21,7 +21,7 @@ public class GroupNoEntity {
return task_Id; return task_Id;
} }
public void setTask_Id(long task_Id) { public void setTask_Id(Long task_Id) {
this.task_Id = task_Id; this.task_Id = task_Id;
} }
@Id @Id
......
package com.yxproject.start.entity; package com.yxproject.start.entity;
import javax.persistence.Entity;
import javax.xml.crypto.Data; import javax.xml.crypto.Data;
public class SpecialCardInfoEntity { public class SpecialCardInfoEntity {
private TaskEntity taskEntity; private TaskEntity taskEntity;
private GroupNoEntity groupNoEntity; private GroupNoEntity groupNoEntity;
private AccCardTEntity accCardTEntity; private AccCardTEntity accCardTEntity;
...@@ -75,7 +73,7 @@ public class SpecialCardInfoEntity { ...@@ -75,7 +73,7 @@ public class SpecialCardInfoEntity {
return cityName; return cityName;
} }
public void setCityName(String cityName) { public void setCityName(String cityName) {
this.cityName = cityName; this.cityName = cityName;
} }
......
package com.yxproject.start.entity.resp;
import javax.xml.crypto.Data;
public class SelectByAcceptedEntity {
private String cardType;
private String library;
private String accept_No;
private String name;
private String sex_No;
private String id_No;
private String birthday;
private String sign_Govt;
private String begin_Date;
private String expire_Date;
private String status_No;
private String taskState;
private String cityName;
private Data lastModifyTime;
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getLibrary() {
return library;
}
public void setLibrary(String library) {
this.library = library;
}
public String getAccept_No() {
return accept_No;
}
public void setAccept_No(String accept_No) {
this.accept_No = accept_No;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSex_No() {
return sex_No;
}
public void setSex_No(String sex_No) {
this.sex_No = sex_No;
}
public String getId_No() {
return id_No;
}
public void setId_No(String id_No) {
this.id_No = id_No;
}
public String getBirthday() {
return birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getSign_Govt() {
return sign_Govt;
}
public void setSign_Govt(String sign_Govt) {
this.sign_Govt = sign_Govt;
}
public String getBegin_Date() {
return begin_Date;
}
public void setBegin_Date(String begin_Date) {
this.begin_Date = begin_Date;
}
public String getExpire_Date() {
return expire_Date;
}
public void setExpire_Date(String expire_Date) {
this.expire_Date = expire_Date;
}
public String getStatus_No() {
return status_No;
}
public void setStatus_No(String status_No) {
this.status_No = status_No;
}
public String getTaskState() {
return taskState;
}
public void setTaskState(String taskState) {
this.taskState = taskState;
}
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public Data getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(Data lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
}
package com.yxproject.start.entity.resp;
import java.util.Date;
public class SelectByGroupNumEntity {
private String library;
private String cityName;
private String cardType;
private String painterName;
private String taskId;
private String group_No;
private Date submit_Date;
private Date position_Date;
private String quality_People_Name;
private Date out_Storage_Date;
private Date in_Storage_Date;
private String exception_Information;
public String getLibrary() {
return library;
}
public void setLibrary(String library) {
this.library = library;
}
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getPainterName() {
return painterName;
}
public void setPainterName(String painterName) {
this.painterName = painterName;
}
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getGroup_No() {
return group_No;
}
public void setGroup_No(String group_No) {
this.group_No = group_No;
}
public Date getSubmit_Date() {
return submit_Date;
}
public void setSubmit_Date(Date submit_Date) {
this.submit_Date = submit_Date;
}
public Date getPosition_Date() {
return position_Date;
}
public void setPosition_Date(Date position_Date) {
this.position_Date = position_Date;
}
public String getQuality_People_Name() {
return quality_People_Name;
}
public void setQuality_People_Name(String quality_People_Name) {
this.quality_People_Name = quality_People_Name;
}
public Date getOut_Storage_Date() {
return out_Storage_Date;
}
public void setOut_Storage_Date(Date out_Storage_Date) {
this.out_Storage_Date = out_Storage_Date;
}
public Date getIn_Storage_Date() {
return in_Storage_Date;
}
public void setIn_Storage_Date(Date in_Storage_Date) {
this.in_Storage_Date = in_Storage_Date;
}
public String getException_Information() {
return exception_Information;
}
public void setException_Information(String exception_Information) {
this.exception_Information = exception_Information;
}
}
package com.yxproject.start.entity.resp;
import javax.xml.crypto.Data;
import java.util.Date;
public class SelectByIdcardEntity {
private String cardType;
private String library;
private String accept_No;
private String name;
private String sex_No;
private String id_No;
private String birthday;
private String sign_Govt;
private String begin_Date;
private String expire_Date;
private String status_No;
private String taskState;
private String cityName;
private Data lastModifyTime;
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getLibrary() {
return library;
}
public void setLibrary(String library) {
this.library = library;
}
public String getAccept_No() {
return accept_No;
}
public void setAccept_No(String accept_No) {
this.accept_No = accept_No;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSex_No() {
return sex_No;
}
public void setSex_No(String sex_No) {
this.sex_No = sex_No;
}
public String getId_No() {
return id_No;
}
public void setId_No(String id_No) {
this.id_No = id_No;
}
public String getBirthday() {
return birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getSign_Govt() {
return sign_Govt;
}
public void setSign_Govt(String sign_Govt) {
this.sign_Govt = sign_Govt;
}
public String getBegin_Date() {
return begin_Date;
}
public void setBegin_Date(String begin_Date) {
this.begin_Date = begin_Date;
}
public String getExpire_Date() {
return expire_Date;
}
public void setExpire_Date(String expire_Date) {
this.expire_Date = expire_Date;
}
public String getStatus_No() {
return status_No;
}
public void setStatus_No(String status_No) {
this.status_No = status_No;
}
public String getTaskState() {
return taskState;
}
public void setTaskState(String taskState) {
this.taskState = taskState;
}
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public Data getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(Data lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
}
\ No newline at end of file
package com.yxproject.start.entity.resp;
import java.util.Date;
public class SelectByWorkOrderEntity {
private String library;
private String cityName;
private String cardType;
private String painterName;
private long task_Id;
private Date submit_Date;
private Date position_Date;
private String quality_People_Name;
private Date out_Storage_Date;
private Date in_Storage_Date;
private String exception_Information;
public String getLibrary() {
return library;
}
public void setLibrary(String library) {
this.library = library;
}
public String getCityName() {
return cityName;
}
public void setCityName(String cityName) {
this.cityName = cityName;
}
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getPainterName() {
return painterName;
}
public void setPainterName(String painterName) {
this.painterName = painterName;
}
public long getTask_Id() {
return task_Id;
}
public void setTask_Id(long task_Id) {
this.task_Id = task_Id;
}
public Date getSubmit_Date() {
return submit_Date;
}
public void setSubmit_Date(Date submit_Date) {
this.submit_Date = submit_Date;
}
public Date getPosition_Date() {
return position_Date;
}
public void setPosition_Date(Date position_Date) {
this.position_Date = position_Date;
}
public String getQuality_People_Name() {
return quality_People_Name;
}
public void setQuality_People_Name(String quality_People_Name) {
this.quality_People_Name = quality_People_Name;
}
public Date getOut_Storage_Date() {
return out_Storage_Date;
}
public void setOut_Storage_Date(Date out_Storage_Date) {
this.out_Storage_Date = out_Storage_Date;
}
public Date getIn_Storage_Date() {
return in_Storage_Date;
}
public void setIn_Storage_Date(Date in_Storage_Date) {
this.in_Storage_Date = in_Storage_Date;
}
public String getException_Information() {
return exception_Information;
}
public void setException_Information(String exception_Information) {
this.exception_Information = exception_Information;
}
}
...@@ -8,6 +8,7 @@ import java.util.Map; ...@@ -8,6 +8,7 @@ import java.util.Map;
@Mapper @Mapper
public interface SelectSerialNumberMapper { public interface SelectSerialNumberMapper {
public Map<String,Object> selectByGroupNumber(String id); public Map<String,Object> selectByGroupNumber(String id);
public Map<String,Object> selectByIDCardOrAccepted(String id); public Map<String,Object> selectByAccepted(String id);
public Map<String,Object> selectByIdCard(String id);
public Map<String,Object> selectByWorkOrderNumber(String id); public Map<String,Object> selectByWorkOrderNumber(String id);
} }
package com.yxproject.start.service; package com.yxproject.start.service;
import com.yxproject.start.entity.SpecialCardInfoEntity; import com.yxproject.start.entity.resp.SelectByAcceptedEntity;
import com.yxproject.start.entity.resp.SelectByGroupNumEntity;
import com.yxproject.start.entity.resp.SelectByIdcardEntity;
import com.yxproject.start.entity.resp.SelectByWorkOrderEntity;
public interface SelectSerialNumberService { public interface SelectSerialNumberService {
SpecialCardInfoEntity selectByGroupNumber(String id); SelectByGroupNumEntity selectByGroupNumber(String id);
SelectByAcceptedEntity selectByAccepted(String id);
SpecialCardInfoEntity selectByIDCardOrAccepted(String id); SelectByIdcardEntity selectByIdCard(String id);
SelectByWorkOrderEntity selectByWorkOrderNumber(String id);
SpecialCardInfoEntity selectByWorkOrderNumber(String id);
} }
package com.yxproject.start.service.impl; package com.yxproject.start.service.impl;
import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;
import com.yxproject.start.entity.AccCardTEntity;
import com.yxproject.start.entity.GroupNoEntity;
import com.yxproject.start.entity.SpecialCardInfoEntity; import com.yxproject.start.entity.SpecialCardInfoEntity;
import com.yxproject.start.entity.TaskEntity;
import com.yxproject.start.entity.resp.SelectByAcceptedEntity;
import com.yxproject.start.entity.resp.SelectByGroupNumEntity;
import com.yxproject.start.entity.resp.SelectByIdcardEntity;
import com.yxproject.start.entity.resp.SelectByWorkOrderEntity;
import com.yxproject.start.mapper.SelectSerialNumberMapper; import com.yxproject.start.mapper.SelectSerialNumberMapper;
import com.yxproject.start.service.SelectSerialNumberService; import com.yxproject.start.service.SelectSerialNumberService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -17,87 +25,113 @@ public class SelectSerialNumberServiceImpl implements SelectSerialNumberService ...@@ -17,87 +25,113 @@ public class SelectSerialNumberServiceImpl implements SelectSerialNumberService
@Autowired @Autowired
public SelectSerialNumberMapper selectSerialNumberMapper; public SelectSerialNumberMapper selectSerialNumberMapper;
@Override @Override
public SpecialCardInfoEntity selectByGroupNumber(String id){ public SelectByGroupNumEntity selectByGroupNumber(String id){
Map<String, Object> map = selectSerialNumberMapper.selectByGroupNumber(id);
Map<String, Object> map = selectSerialNumberMapper.selectByGroupNumber(id);
System.out.println("数据111"+map.toString());
System.out.println("数据111"+map);
SpecialCardInfoEntity specialCardInfoEntity = new SpecialCardInfoEntity(); SelectByGroupNumEntity selectByGroupNumEntity = new SelectByGroupNumEntity();
specialCardInfoEntity.setLibrary("盈信库"); selectByGroupNumEntity.setLibrary("盈信库");
specialCardInfoEntity.getGroupNoEntity().setTask_Id((Long) map.get("TASK_ID")); selectByGroupNumEntity.setCityName(String.valueOf(map.get("CITYNAME")));
specialCardInfoEntity.getGroupNoEntity().setGroup_No(String.valueOf(map.get("GROUP_NO"))); selectByGroupNumEntity.setCardType((String) map.get("CARD_TYPE"));
specialCardInfoEntity.setCityName(String.valueOf(map.get("CITYNAME"))); selectByGroupNumEntity.setPainterName((String) map.get("PRINTER_NAME"));
specialCardInfoEntity.setCardType((String) map.get("CARD_TYPE")); selectByGroupNumEntity.setTaskId(String.valueOf(map.get("TASK_ID")));
specialCardInfoEntity.getTaskEntity().setSubmit_Date((Date) map.get("SUBMIT_DATE")); selectByGroupNumEntity.setGroup_No(String.valueOf(map.get("GROUP_NO")));
specialCardInfoEntity.setPainterName((String) map.get("PRINTER_NAME")); selectByGroupNumEntity.setSubmit_Date((Date) map.get("SUBMIT_DATE"));
specialCardInfoEntity.getTaskEntity().setPosition_Date((Date) map.get("POSITION_DATE")); System.out.println("Date:"+selectByGroupNumEntity.getSubmit_Date().toString());
specialCardInfoEntity.getTaskEntity().setQuality_People_Name((String) map.get("QUALITY_PEOPLE_NAME")); selectByGroupNumEntity.setPosition_Date((Date) map.get("POSITION_DATE"));
specialCardInfoEntity.getTaskEntity().setOut_Storage_Date((Date) map.get("OUT_STORAGE_DATE")); selectByGroupNumEntity.setQuality_People_Name((String) map.get("QUALITY_PEOPLE_NAME"));
specialCardInfoEntity.getTaskEntity().setIn_Storage_Date((Date) map.get("IN_STORAGE_DATE")); selectByGroupNumEntity.setOut_Storage_Date((Date) map.get("OUT_STORAGE_DATE"));
specialCardInfoEntity.getTaskEntity().setException_Information((String) map.get("EXCEPTION_INFORMATION")); selectByGroupNumEntity.setIn_Storage_Date((Date) map.get("IN_STORAGE_DATE"));
selectByGroupNumEntity.setException_Information((String) map.get("EXCEPTION_INFORMATION"));
return specialCardInfoEntity; return selectByGroupNumEntity;
} }
@Override @Override
public SpecialCardInfoEntity selectByIDCardOrAccepted(String id){ public SelectByAcceptedEntity selectByAccepted(String id){
Map<String,Object> map = selectSerialNumberMapper.selectByIDCardOrAccepted(id); Map<String,Object> map = selectSerialNumberMapper.selectByAccepted(id);
SpecialCardInfoEntity specialCardInfoEntity = new SpecialCardInfoEntity(); SelectByAcceptedEntity selectByAcceptedEntity = new SelectByAcceptedEntity();
String sex ; String sex ;
if ((Integer)map.get("SEX_NO")==1){ if (Integer.parseInt((String) map.get("SEX_NO")) ==1){
sex = "男"; sex = "男";
}else if ((Integer)map.get("SEX_NO")==2){ }else if (Integer.parseInt((String) map.get("SEX_NO"))==2){
sex = "女"; sex = "女";
}else { }else {
sex = "缺失"; sex = "缺失";
} }
if ((Integer) map.get("CARD_TYPE")==0){ selectByAcceptedEntity.setCardType((String) map.get("CARD_TYPE"));
specialCardInfoEntity.setCardType((String) map.get("CARD_TYPE")); selectByAcceptedEntity.setLibrary("受理库");
}else if ( (Integer) map.get("CARD_TYPE")!= 0&& map.get("CARD_TYPE")!=null){ selectByAcceptedEntity.setAccept_No((String) map.get("ACCEPT_NO"));
selectByAcceptedEntity.setName((String) map.get("NAME"));
selectByAcceptedEntity.setSex_No(sex);
selectByAcceptedEntity.setId_No((String) map.get("ID_NO"));
selectByAcceptedEntity.setBirthday((String) map.get("BIRTHDAY"));
selectByAcceptedEntity.setSign_Govt((String) map.get("SIGN_GOVT"));
selectByAcceptedEntity.setBegin_Date((String) map.get("BEGIN_DATE"));
selectByAcceptedEntity.setExpire_Date((String) map.get("EXPIRE_DATE"));
selectByAcceptedEntity.setStatus_No((String) map.get("STATUS_NO"));
selectByAcceptedEntity.setTaskState((String) map.get("TASK_STATE"));
selectByAcceptedEntity.setCityName((String) map.get("CITYNAME"));
selectByAcceptedEntity.setLastModifyTime((Data) map.get("lastModifyTime;"));
return selectByAcceptedEntity;
}
@Override
public SelectByIdcardEntity selectByIdCard(String id){
Map<String,Object> map = selectSerialNumberMapper.selectByIdCard(id);
SelectByIdcardEntity selectByIdcardEntity = new SelectByIdcardEntity();
String sex ;
if (Integer.parseInt((String) map.get("SEX_NO")) ==1){
sex = "男";
}else if (Integer.parseInt((String) map.get("SEX_NO"))==2){
sex = "女";
}else { }else {
specialCardInfoEntity.setCardType("缺失"); sex = "缺失";
} }
specialCardInfoEntity.setLibrary("受理库"); selectByIdcardEntity.setCardType((String) map.get("CARD_TYPE"));
specialCardInfoEntity.getAccCardTEntity().setAcceptNo((String) map.get("ACCEPT_NO")); selectByIdcardEntity.setLibrary("受理库");
specialCardInfoEntity.getAccCardTEntity().setName((String) map.get("NAME")); selectByIdcardEntity.setAccept_No((String) map.get("ACCEPT_NO"));
specialCardInfoEntity.getAccCardTEntity().setIdNo((String) map.get("ID_NO")); selectByIdcardEntity.setName((String) map.get("NAME"));
specialCardInfoEntity.getAccCardTEntity().setSexNo(sex); selectByIdcardEntity.setSex_No(sex);
specialCardInfoEntity.getAccCardTEntity().setBirthday((String) map.get("BIRTHDAY")); selectByIdcardEntity.setId_No((String) map.get("ID_NO"));
specialCardInfoEntity.getAccCardTEntity().setSignGovt((String) map.get("SIGN_GOVT")); selectByIdcardEntity.setBirthday((String) map.get("BIRTHDAY"));
specialCardInfoEntity.getAccCardTEntity().setBeginDate((String) map.get("BEGIN_DATE")); selectByIdcardEntity.setSign_Govt((String) map.get("SIGN_GOVT"));
specialCardInfoEntity.getAccCardTEntity().setExpireDate((String) map.get("EXPIRE_DATE")); selectByIdcardEntity.setBegin_Date((String) map.get("BEGIN_DATE"));
specialCardInfoEntity.getAccCardTEntity().setStatusNo((String) map.get("STATUS_NO")); selectByIdcardEntity.setExpire_Date((String) map.get("EXPIRE_DATE"));
specialCardInfoEntity.setTaskState((String) map.get("TASK_STATE")); selectByIdcardEntity.setStatus_No((String) map.get("STATUS_NO"));
specialCardInfoEntity.setCityName((String) map.get("CITYNAME")); selectByIdcardEntity.setTaskState((String) map.get("TASK_STATE"));
specialCardInfoEntity.setLastModifyTime((Data) map.get("lastModifyTime;")); selectByIdcardEntity.setCityName((String) map.get("CITYNAME"));
selectByIdcardEntity.setLastModifyTime((Data) map.get("lastModifyTime;"));
return specialCardInfoEntity; return selectByIdcardEntity;
} }
@Override @Override
public SpecialCardInfoEntity selectByWorkOrderNumber(String id){ public SelectByWorkOrderEntity selectByWorkOrderNumber(String id){
Map<String,Object> map = selectSerialNumberMapper.selectByWorkOrderNumber(id); Map<String,Object> map = selectSerialNumberMapper.selectByWorkOrderNumber(id);
SpecialCardInfoEntity specialCardInfoEntity = new SpecialCardInfoEntity(); SelectByWorkOrderEntity selectByWorkOrderEntity = new SelectByWorkOrderEntity();
specialCardInfoEntity.setLibrary("盈信库"); selectByWorkOrderEntity.setLibrary("盈信库");
specialCardInfoEntity.getTaskEntity().setTask_Id((Long) map.get("TASK_ID")); selectByWorkOrderEntity.setCityName((String) map.get("CITYNAME"));
specialCardInfoEntity.setCityName((String) map.get("CITYNAME")); selectByWorkOrderEntity.setCardType((String) map.get("CARD_TYPE"));
specialCardInfoEntity.setCardType((String) map.get("CARD_TYPE")); selectByWorkOrderEntity.setPainterName((String) map.get("PRINTER_NAME"));
specialCardInfoEntity.getTaskEntity().setSubmit_Date((Date) map.get("SUBMIT_DATE")); selectByWorkOrderEntity.setTask_Id((Long.valueOf(String.valueOf( map.get("TASK_ID")))));
specialCardInfoEntity.setPainterName((String) map.get("PRINTER_NAME")); selectByWorkOrderEntity.setSubmit_Date((Date) map.get("SUBMIT_DATE"));
specialCardInfoEntity.getTaskEntity().setPosition_Date((Date) map.get("POSITION_DATE")); selectByWorkOrderEntity.setPosition_Date((Date) map.get("POSITION_DATE"));
specialCardInfoEntity.getTaskEntity().setQuality_People_Name((String) map.get("QUALITY_PEOPLE_NAME")); selectByWorkOrderEntity.setQuality_People_Name((String) map.get("QUALITY_PEOPLE_NAME"));
specialCardInfoEntity.getTaskEntity().setOut_Storage_Date((Date) map.get("OUT_STORAGE_DATE")); selectByWorkOrderEntity.setOut_Storage_Date((Date) map.get("OUT_STORAGE_DATE"));
specialCardInfoEntity.getTaskEntity().setIn_Storage_Date((Date) map.get("IN_STORAGE_DATE")); selectByWorkOrderEntity.setIn_Storage_Date((Date) map.get("IN_STORAGE_DATE"));
specialCardInfoEntity.getTaskEntity().setException_Information((String) map.get("EXCEPTION_INFORMATION")); selectByWorkOrderEntity.setException_Information((String) map.get("EXCEPTION_INFORMATION"));
System.out.println("实体:"+selectByWorkOrderEntity);
return specialCardInfoEntity; return selectByWorkOrderEntity;
} }
} }
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.yxproject.start.mapper.ProdCardTMapper"> <mapper namespace="com.yxproject.start.mapper.SelectSerialNumberMapper">
<resultMap id="SelectSerialNumberMapper" type="java.util.HashMap"> <resultMap id="SelectSerialNumberMapper" type="java.util.HashMap">
</resultMap> </resultMap>
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
LEFT JOIN CITY_DIC ON (TASK.CITYCODE = CITY_DIC.CITYCODE) LEFT JOIN CITY_DIC ON (TASK.CITYCODE = CITY_DIC.CITYCODE)
LEFT JOIN TASK_STATE_DIC ON (TASK.TASK_STATE_ID = TASK_STATE_DIC.TASK_STATE_ID) LEFT JOIN TASK_STATE_DIC ON (TASK.TASK_STATE_ID = TASK_STATE_DIC.TASK_STATE_ID)
LEFT JOIN CARD_TYPE_DIC ON (TASK.CARD_TYPE = CARD_TYPE_DIC.CARD_TYPE_ID) LEFT JOIN CARD_TYPE_DIC ON (TASK.CARD_TYPE = CARD_TYPE_DIC.CARD_TYPE_ID)
where ACCEPT_NO=#{id}; where ACCEPT_NO=#{id}
</select> </select>
<!--根据身份证号查询--> <!--根据身份证号查询-->
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
LEFT JOIN CITY_DIC ON (TASK.CITYCODE = CITY_DIC.CITYCODE) LEFT JOIN CITY_DIC ON (TASK.CITYCODE = CITY_DIC.CITYCODE)
LEFT JOIN TASK_STATE_DIC ON (TASK.TASK_STATE_ID = TASK_STATE_DIC.TASK_STATE_ID) LEFT JOIN TASK_STATE_DIC ON (TASK.TASK_STATE_ID = TASK_STATE_DIC.TASK_STATE_ID)
LEFT JOIN CARD_TYPE_DIC ON (TASK.CARD_TYPE = CARD_TYPE_DIC.CARD_TYPE_ID) LEFT JOIN CARD_TYPE_DIC ON (TASK.CARD_TYPE = CARD_TYPE_DIC.CARD_TYPE_ID)
where ID_NO =#{id} where ID_NO=#{id}
</select> </select>
<!--根据任务单查询--> <!--根据任务单查询-->
......
...@@ -659,15 +659,16 @@ app.service('MessageService', function (ngDialog) { ...@@ -659,15 +659,16 @@ app.service('MessageService', function (ngDialog) {
id:cardid id:cardid
} }
}).then(function successCallback(response) { }).then(function successCallback(response) {
console.log(response.data,"-------------response.data------") console.log(response.data,"-------------response.data------")
success(response.data) success(response.data)
},function(err){ },function(err){
DebugService.debug("$http error:", err) console.log("error111111111111111111")
DebugService.debug("----------------------------------------------") // DebugService.debug("$http error:", err)
// DebugService.debug("----------------------------------------------")
var errA = {Error:true, ReturnCode:err.status, ReturnMsg:"API访问返回错误"} var errA = {Error:true, ReturnCode:err.status, ReturnMsg:"API访问返回错误"}
MessageService.httpRequestFailed(JSON.stringify(errA)) MessageService.httpRequestFailed(JSON.stringify(errA))
}) })
}, },
} }
}]) }])
\ No newline at end of file
...@@ -24,11 +24,8 @@ app.controller('layOutCtrl', ['$scope', '$rootScope', '$http', '$state', '$filte ...@@ -24,11 +24,8 @@ app.controller('layOutCtrl', ['$scope', '$rootScope', '$http', '$state', '$filte
$scope.doSearch = function(){ $scope.doSearch = function(){
$rootScope.searchInput=$("#searchInput").val(); $rootScope.searchInput=$("#searchInput").val();
HttpService.querySpecialCardInfo($rootScope.searchInput,function(data) { HttpService.querySpecialCardInfo($rootScope.searchInput,function(data) {
console.log(data,"----layout.searchSpecialCard--")
if(data != null){ if(data != null){
$rootScope.specialCardInfo = data.respData; $rootScope.specialCardInfo = data.respData.searchResult;
console.log("搜索结果")
console.log("$rootScope.specialCardInfo",$rootScope.specialCardInfo)
} }
}) })
......
...@@ -16,12 +16,14 @@ ...@@ -16,12 +16,14 @@
<h3 ng-show="specialCardInfo== null&&searchInput!=null">没有找到与 "{{searchInput}}" 相关的信息。</h3> <h3 ng-show="specialCardInfo== null&&searchInput!=null">没有找到与 "{{searchInput}}" 相关的信息。</h3>
<h3 ng-show="searchInput==null">请在快速搜索框中填写身份证号/受理号,查询相关信息。</h3> <h3 ng-show="searchInput==null">请在快速搜索框中填写身份证号/受理号,查询相关信息。</h3>
<div style="width: auto"> <div style="width: auto">
<div ng-if="specialCardInfo[0].isGroup==0"> <h3 class="panel-title">
{{specialCardInfo.library}}
<div class="panel panel-default" ng-if="specialCardInfo[1]!=null"> </h3>
<div >
<div class="panel panel-default">
<div class="panel-heading"> <div class="panel-heading">
<h3 class="panel-title"> <h3 class="panel-title">
{{specialCardInfo[1].cycleSheetInfo}} {{specialCardInfo.library}}
</h3> </h3>
</div> </div>
<div class="panel-body" style="width: auto"> <div class="panel-body" style="width: auto">
...@@ -33,34 +35,27 @@ ...@@ -33,34 +35,27 @@
<th>地市</th> <th>地市</th>
<th>制证类型</th> <th>制证类型</th>
<th>日期</th> <th>日期</th>
<th>工序</th>
<th>操作时间</th> <th>操作时间</th>
<th>机器号</th> <th>机器号</th>
<th>制证车间</th>
<th>质检</th> <th>质检</th>
<th>出库时间</th> <th>出库时间</th>
<th>入库时间</th> <th>入库时间</th>
<th>异常信息</th>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>{{specialCardInfo[1].info[9]}}</td> <td>{{specialCardInfo.group_No}}</td>
<td>{{specialCardInfo[1].info[14]}}</td> <td>{{specialCardInfo.cityName}}</td>
<td>{{specialCardInfo[1].info[6]}}</td> <td>{{specialCardInfo.cardType}}</td>
<td>{{specialCardInfo[1].info[1]|myDateFilter}}</td> <td><span>{{specialCardInfo.submit_Date.time | date:'yyyy-MM-dd'}}</span></td>
<td>{{specialCardInfo[1].info[7]}}</td> <td>{{specialCardInfo.position_Date}}</td>
<td>{{specialCardInfo[1].info[4]}}</td> <td>{{specialCardInfo.painterName}}</td>
<td>{{specialCardInfo[1].info[16]}}</td> <td>{{specialCardInfo.quality_People_Name}}</td>
<td ng-if="specialCardInfo[1].info[2]=='p1'">平一</td> <td>{{specialCardInfo.out_Storage_Date.time | date:'yyyy-MM-dd'}}</td>
<td ng-if="specialCardInfo[1].info[2]=='p2'">平二</td> <td>{{specialCardInfo.in_Storage_Date.time | date:'yyyy-MM-dd'}}</td>
<td>{{specialCardInfo[1].info[15]}}</td> <td ng-if="specialCardInfo.exception_Information!=null">{{specialCardInfo.exception_Information}}
<td ng-if="specialCardInfo[1].info[12]!=null">{{specialCardInfo[1].info[12] |
myDateFilter}}
</td> </td>
<td ng-if="specialCardInfo[1].info[13]!=null">{{specialCardInfo[1].info[12] |
myDateFilter}}
</td>
<td ng-if="specialCardInfo[1].info[12]==null"></td>
<td ng-if="specialCardInfo[1].info[13]==null"></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -73,7 +68,7 @@ ...@@ -73,7 +68,7 @@
<div class="panel-heading"> <div class="panel-heading">
<h3 class="panel-title"> <h3 class="panel-title">
{{specialCardInfo[0].database}} {{specialCardInfo.library}}
</h3> </h3>
</div> </div>
<div class="panel-body" style="width: auto"> <div class="panel-body" style="width: auto">
...@@ -82,9 +77,9 @@ ...@@ -82,9 +77,9 @@
<table class="table"> <table class="table">
<thead> <thead>
<th>地市</th> <th>地市</th>
<th ng-show="specialCardInfo[0].oldGroupNo!=null">受理号</th> <th ng-show="specialCardInfo.ACCEPT_NO!=null">受理号</th>
<th>姓名</th> <th>姓名</th>
<th ng-show="specialCardInfo[0].makeName!=null">制证类型</th> <th ng-show="specialCardInfo.CARD_TYPE!=null">制证类型</th>
<th>身份证号</th> <th>身份证号</th>
<th>性别</th> <th>性别</th>
<th>出生日期</th> <th>出生日期</th>
...@@ -98,24 +93,20 @@ ...@@ -98,24 +93,20 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>{{specialCardInfo[0].sbdw}}</td> <td>{{specialCardInfo.CITYNAME}}</td>
<td ng-show="specialCardInfo[0].oldGroupNo!=null"> <td ng-show="specialCardInfo.ACCEPT_NO!=null">
{{specialCardInfo[0].oldGroupNo}} {{specialCardInfo.ACCEPT_NO}}
</td> </td>
<td>{{specialCardInfo[0].name}}</td> <td>{{specialCardInfo.NAME}}</td>
<td ng-show="specialCardInfo[0].makeType!=null">{{specialCardInfo[0].makeName}}</td> <td ng-show="specialCardInfo.CARD_TYPE!=null">{{specialCardInfo.CARD_TYPE}}</td>
<td>{{specialCardInfo[0].IDcard}}</td> <td>{{specialCardInfo.ID_NO}}</td>
<td>{{specialCardInfo[0].xb}}</td> <td>{{specialCardInfo.sex}}</td>
<td>{{specialCardInfo[0].csrq | myDateFilter}}</td> <td>{{specialCardInfo.BIRTHDAY }}</td>
<td>{{specialCardInfo[0].jfjg}}</td> <td>{{specialCardInfo.SIGN_GOVT}}</td>
<td>{{specialCardInfo[0].yxqqsrq}}</td> <td>{{specialCardInfo.BEGIN_DATE}}</td>
<td>{{specialCardInfo[0].yxqjzrq}}</td> <td>{{specialCardInfo.EXPIRE_DATE}}</td>
<td>{{specialCardInfo[0].state}}</td> <td>{{specialCardInfo.TASK_STATE}}</td>
<td>{{specialCardInfo[0].sbdw}}</td> <td>{{specialCardInfo.CITYNAME}}</td>
<td ng-if="specialCardInfo[0].type==0">废证</td>
<td ng-if="specialCardInfo[0].type==1">快证</td>
<td ng-if="specialCardInfo[0].type==2">余证</td>
<td ng-if="specialCardInfo[0].type==3">退证</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -164,469 +155,467 @@ ...@@ -164,469 +155,467 @@
</div> </div>
</div> </div>
<div ng-if="specialCardInfo[0].isGroup==1"> <!--<div ng-if="specialCardInfo[0].isGroup==1">-->
<div class="panel panel-default"> <!--<div class="panel panel-default">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
{{specialCardInfo[0].library}} <!--{{specialCardInfo[0].library}}-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>组号</th> <!--<th>组号</th>-->
<th>证件类型</th> <!--<th>证件类型</th>-->
<th>地域</th> <!--<th>地域</th>-->
<th>循环单生成时间</th> <!--<th>循环单生成时间</th>-->
<th>工序</th> <!--<th>工序</th>-->
<th>转入制证库时间</th> <!--<th>转入制证库时间</th>-->
<th>打印卸载时间</th> <!--<th>打印卸载时间</th>-->
<th>电写入时间</th> <!--<th>电写入时间</th>-->
<th>电质检时间</th> <!--<th>电质检时间</th>-->
<th>生产车间</th> <!--<th>生产车间</th>-->
<th>机器号</th> <!--<th>机器号</th>-->
<th>出库时间</th> <!--<th>出库时间</th>-->
<th>入库时间</th> <!--<th>入库时间</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].groupNo}}</td> <!--<td>{{specialCardInfo[0].groupNo}}</td>-->
<td>{{specialCardInfo[0].info[5]}}</td> <!--<td>{{specialCardInfo[0].info[5]}}</td>-->
<td>{{specialCardInfo[0].info[5]}}</td> <!--<td>{{specialCardInfo[0].info[5]}}</td>-->
<td>{{specialCardInfo[0].info[3]}}</td> <!--<td>{{specialCardInfo[0].info[3]}}</td>-->
<td>{{specialCardInfo[0].info[6]}}</td> <!--<td>{{specialCardInfo[0].info[6]}}</td>-->
<td>{{specialCardInfo[0].info[7]}}</td> <!--<td>{{specialCardInfo[0].info[7]}}</td>-->
<td>{{specialCardInfo[0].info[8]}}</td> <!--<td>{{specialCardInfo[0].info[8]}}</td>-->
<td>{{specialCardInfo[0].info[9]}}</td> <!--<td>{{specialCardInfo[0].info[9]}}</td>-->
<td>{{specialCardInfo[0].info[10]}}</td> <!--<td>{{specialCardInfo[0].info[10]}}</td>-->
<td ng-if="specialCardInfo[0].info[12]=='p1'">平一车间</td> <!--<td ng-if="specialCardInfo[0].info[12]=='p1'">平一车间</td>-->
<td ng-if="specialCardInfo[0].info[12]=='p2'">平二车间</td> <!--<td ng-if="specialCardInfo[0].info[12]=='p2'">平二车间</td>-->
<td ng-if="specialCardInfo[0].info[12]==null">未分配</td> <!--<td ng-if="specialCardInfo[0].info[12]==null">未分配</td>-->
<td>{{specialCardInfo[0].info[11]}}</td> <!--<td>{{specialCardInfo[0].info[11]}}</td>-->
<td>{{specialCardInfo[0].info[16]| limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[16]| limitTo:8}}</td>-->
<td>{{specialCardInfo[0].info[17]| limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[17]| limitTo:8}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
异常信息 <!--异常信息-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
{{specialCardInfo[0].info[14]}} <!--{{specialCardInfo[0].info[14]}}-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div ng-if="specialCardInfo[0].isGroup==3"> <!--<div ng-if="specialCardInfo[0].isGroup==3">-->
<div class="panel panel-default"> <!--<div class="panel panel-default">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
{{specialCardInfo[0].library}} <!--{{specialCardInfo[0].library}}-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>组号</th> <!--<th>组号</th>-->
<th>原文件名</th> <!--<th>原文件名</th>-->
<th>证件类型</th> <!--<th>证件类型</th>-->
<th>循环单生成时间</th> <!--<th>循环单生成时间</th>-->
<th>循环单所处工序</th> <!--<th>循环单所处工序</th>-->
<th>装库时间</th> <!--<th>装库时间</th>-->
<th>出库时间</th> <!--<th>出库时间</th>-->
<th>入库时间</th> <!--<th>入库时间</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].groupNo}}</td> <!--<td>{{specialCardInfo[0].groupNo}}</td>-->
<td>{{specialCardInfo[0].info[12]}}</td> <!--<td>{{specialCardInfo[0].info[12]}}</td>-->
<td>{{specialCardInfo[0].info[5]}}</td> <!--<td>{{specialCardInfo[0].info[5]}}</td>-->
<td>{{specialCardInfo[0].info[4]}}</td> <!--<td>{{specialCardInfo[0].info[4]}}</td>-->
<td>{{specialCardInfo[0].info[6]}}</td> <!--<td>{{specialCardInfo[0].info[6]}}</td>-->
<td>{{specialCardInfo[0].info[7]}}</td> <!--<td>{{specialCardInfo[0].info[7]}}</td>-->
<td>{{specialCardInfo[0].info[16]| limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[16]| limitTo:8}}</td>-->
<td>{{specialCardInfo[0].info[17]| limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[17]| limitTo:8}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
异常信息 <!--异常信息-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
{{specialCardInfo[0].info[14]}} <!--{{specialCardInfo[0].info[14]}}-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div ng-if="specialCardInfo[0].isGroup==4"> <!--<div ng-if="specialCardInfo[0].isGroup==4">-->
<div class="panel panel-default"> <!--<div class="panel panel-default">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
{{specialCardInfo[0].library}} <!--{{specialCardInfo[0].library}}-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>循环单流水号</th> <!--<th>循环单流水号</th>-->
<th>组号</th> <!--<th>组号</th>-->
<th>制证类型</th> <!--<th>制证类型</th>-->
<th>时间</th> <!--<th>时间</th>-->
<th>工序</th> <!--<th>工序</th>-->
<th>打印机器</th> <!--<th>打印机器</th>-->
<th>制证车间</th> <!--<th>制证车间</th>-->
<th>质检人</th> <!--<th>质检人</th>-->
<th>出库时间</th> <!--<th>出库时间</th>-->
<th>入库时间</th> <!--<th>入库时间</th>-->
<th>异常</th> <!--<th>异常</th>-->
<th ng-if="specialCardInfo[0].info[12]==1">异常信息</th> <!--<th ng-if="specialCardInfo[0].info[12]==1">异常信息</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].info[1]}}</td> <!--<td>{{specialCardInfo[0].info[1]}}</td>-->
<td>{{specialCardInfo[0].groupNo}}</td> <!--<td>{{specialCardInfo[0].groupNo}}</td>-->
<td>{{specialCardInfo[0].info[5]}}</td> <!--<td>{{specialCardInfo[0].info[5]}}</td>-->
<td>{{specialCardInfo[0].info[3]}}</td> <!--<td>{{specialCardInfo[0].info[3]}}</td>-->
<td>{{specialCardInfo[0].info[6]}}</td> <!--<td>{{specialCardInfo[0].info[6]}}</td>-->
<td>{{specialCardInfo[0].info[8]}}</td> <!--<td>{{specialCardInfo[0].info[8]}}</td>-->
<td ng-if="specialCardInfo[0].info[9]=='p1'">平一车间</td> <!--<td ng-if="specialCardInfo[0].info[9]=='p1'">平一车间</td>-->
<td ng-if="specialCardInfo[0].info[9]=='p2'">平二车间</td> <!--<td ng-if="specialCardInfo[0].info[9]=='p2'">平二车间</td>-->
<td ng-if="specialCardInfo[0].info[9]==null">未分配</td> <!--<td ng-if="specialCardInfo[0].info[9]==null">未分配</td>-->
<td>{{specialCardInfo[0].info[10]}}</td> <!--<td>{{specialCardInfo[0].info[10]}}</td>-->
<td>{{specialCardInfo[0].info[13] | limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[13] | limitTo:8}}</td>-->
<td>{{specialCardInfo[0].info[14] | limitTo:8}}</td> <!--<td>{{specialCardInfo[0].info[14] | limitTo:8}}</td>-->
<td ng-if="specialCardInfo[0].info[12]==0"></td> <!--<td ng-if="specialCardInfo[0].info[12]==0">无</td>-->
<td ng-if="specialCardInfo[0].info[12]==1" style="color:red;">异常</td> <!--<td ng-if="specialCardInfo[0].info[12]==1" style="color:red;">异常</td>-->
<td ng-if="specialCardInfo[0].info[12]==1">{{specialCardInfo[0].info[11]}}</td> <!--<td ng-if="specialCardInfo[0].info[12]==1">{{specialCardInfo[0].info[11]}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].info[15]==1">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
异常信息 <!--异常信息-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
{{specialCardInfo[0].info[14]}} <!--{{specialCardInfo[0].info[14]}}-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div ng-if="specialCardInfo[0].isGroup==5"> <!--<div ng-if="specialCardInfo[0].isGroup==5">-->
<div class="panel panel-default"> <!--<div class="panel panel-default">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
{{specialCardInfo[0].library}} <!--{{specialCardInfo[0].library}}-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>组号</th> <!--<th>组号</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].groupNo}}</td> <!--<td>{{specialCardInfo[0].groupNo}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div ng-if="specialCardInfo[0].isGroup==6"> <!--<div ng-if="specialCardInfo[0].isGroup==6">-->
<div class="panel panel-default" ng-if="specialCardInfo[0]!=null"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0]!=null">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
{{specialCardInfo[0].cycleSheetInfo}} <!--{{specialCardInfo[0].cycleSheetInfo}}-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>编号</th> <!--<th>编号</th>-->
<th>地市</th> <!--<th>地市</th>-->
<th>制证类型</th> <!--<th>制证类型</th>-->
<th>日期</th> <!--<th>日期</th>-->
<!--<th>最后修改日期</th>--> <!--&lt;!&ndash;<th>最后修改日期</th>&ndash;&gt;-->
<th>工序</th> <!--<th>工序</th>-->
<th>操作时间</th> <!--<th>操作时间</th>-->
<th>机器号</th> <!--<th>机器号</th>-->
<th>制证车间</th> <!--<th>制证车间</th>-->
<th>质检</th> <!--<th>质检</th>-->
<th>出库时间</th> <!--<th>出库时间</th>-->
<th>入库时间</th> <!--<th>入库时间</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].info[9]}}</td> <!--<td>{{specialCardInfo[0].info[9]}}</td>-->
<td>{{specialCardInfo[0].info[14]}}</td> <!--<td>{{specialCardInfo[0].info[14]}}</td>-->
<td>{{specialCardInfo[0].info[6]}}</td> <!--<td>{{specialCardInfo[0].info[6]}}</td>-->
<td>{{specialCardInfo[0].info[1]|myDateFilter}}</td> <!--<td>{{specialCardInfo[0].info[1]}}</td>-->
<td>{{specialCardInfo[0].info[7]}}</td> <!--<td>{{specialCardInfo[0].info[7]}}</td>-->
<td>{{specialCardInfo[0].info[4]}}</td> <!--<td>{{specialCardInfo[0].info[4]}}</td>-->
<td>{{specialCardInfo[0].info[16]}}</td> <!--<td>{{specialCardInfo[0].info[16]}}</td>-->
<td ng-if="specialCardInfo[0].info[2]=='p1'">平一</td> <!--<td ng-if="specialCardInfo[0].info[2]=='p1'">平一</td>-->
<td ng-if="specialCardInfo[0].info[2]=='p2'">平二</td> <!--<td ng-if="specialCardInfo[0].info[2]=='p2'">平二</td>-->
<td>{{specialCardInfo[0].info[15]}}</td> <!--<td>{{specialCardInfo[0].info[15]}}</td>-->
<td ng-if="specialCardInfo[0].info[12]!=null">{{specialCardInfo[1].info[12] | <!--<td ng-if="specialCardInfo[0].info[12]!=null">{{specialCardInfo[1].info[12] }}-->
myDateFilter}} <!--</td>-->
</td> <!--<td ng-if="specialCardInfo[0].info[13]!=null">{{specialCardInfo[1].info[12] }}-->
<td ng-if="specialCardInfo[0].info[13]!=null">{{specialCardInfo[1].info[12] | <!--</td>-->
myDateFilter}} <!--<td ng-if="specialCardInfo[0].info[12]==null"></td>-->
</td> <!--<td ng-if="specialCardInfo[0].info[13]==null"></td>-->
<td ng-if="specialCardInfo[0].info[12]==null"></td> <!--</tr>-->
<td ng-if="specialCardInfo[0].info[13]==null"></td> <!--</tbody>-->
</tr> <!--</table>-->
</tbody> <!--</div>-->
</table> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--<div ng-if="specialCardInfo[0].isGroup==8">-->
</div> <!--&lt;!&ndash;循环单&ndash;&gt;-->
<div ng-if="specialCardInfo[0].isGroup==8"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].cyclesheet.length>0">-->
<!--循环单--> <!--<div class="panel-heading">-->
<div class="panel panel-default" ng-if="specialCardInfo[0].cyclesheet.length>0"> <!--<h3 class="panel-title">-->
<div class="panel-heading"> <!--循环单-->
<h3 class="panel-title"> <!--</h3>-->
循环单 <!--</div>-->
</h3> <!--<div class="panel-body" style="width: auto">-->
</div> <!--<div class="container" style="width: auto">-->
<div class="panel-body" style="width: auto"> <!--<div style="float: left;padding:0 15px 0 15px;">-->
<div class="container" style="width: auto"> <!--<table class="table">-->
<div style="float: left;padding:0 15px 0 15px;"> <!--<thead>-->
<table class="table"> <!--<th>循环单流水号</th>-->
<thead> <!--<th>组号</th>-->
<th>循环单流水号</th> <!--<th>地市</th>-->
<th>组号</th> <!--<th>制证类型</th>-->
<th>地市</th> <!--<th>创建日期</th>-->
<th>制证类型</th> <!--<th>工序</th>-->
<th>创建日期</th> <!--<th>最后修改时间</th>-->
<th>工序</th> <!--<th>机器号</th>-->
<th>最后修改时间</th> <!--<th>制证车间</th>-->
<th>机器号</th> <!--<th>预定位接收时间</th>-->
<th>制证车间</th> <!--<th>质检人</th>-->
<th>预定位接收时间</th> <!--<th>出库时间</th>-->
<th>质检人</th> <!--<th>入库时间</th>-->
<th>出库时间</th> <!--<th>异常</th>-->
<th>入库时间</th> <!--</thead>-->
<th>异常</th> <!--<tbody>-->
</thead> <!--<tr>-->
<tbody> <!--<td>{{specialCardInfo[0].cyclesheet[0]}}</td>-->
<tr> <!--<td>{{specialCardInfo[0].cyclesheet[1]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[0]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[2]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[1]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[3]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[2]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[4]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[3]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[5]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[4]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[6]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[5]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[7]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[6]}}</td> <!--<td ng-if="specialCardInfo[0].cyclesheet[8]=='p1'||specialCardInfo[0].cyclesheet[8]=='p3'">-->
<td>{{specialCardInfo[0].cyclesheet[7]}}</td> <!--平一-->
<td ng-if="specialCardInfo[0].cyclesheet[8]=='p1'||specialCardInfo[0].cyclesheet[8]=='p3'"> <!--</td>-->
平一 <!--<td ng-if="specialCardInfo[0].cyclesheet[8]=='p2'||specialCardInfo[0].cyclesheet[8]=='p4'">-->
</td> <!--平二-->
<td ng-if="specialCardInfo[0].cyclesheet[8]=='p2'||specialCardInfo[0].cyclesheet[8]=='p4'"> <!--</td>-->
平二 <!--<td>{{specialCardInfo[0].cyclesheet[9]}}</td>-->
</td> <!--<td>{{specialCardInfo[0].cyclesheet[10]}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[9]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[11] | limitTo:8}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[10]}}</td> <!--<td>{{specialCardInfo[0].cyclesheet[12] | limitTo:8}}</td>-->
<td>{{specialCardInfo[0].cyclesheet[11] | limitTo:8}}</td> <!--<td ng-if="specialCardInfo[0].cyclesheet[14]==0">无</td>-->
<td>{{specialCardInfo[0].cyclesheet[12] | limitTo:8}}</td> <!--<td ng-if="specialCardInfo[0].cyclesheet[14]==1">-->
<td ng-if="specialCardInfo[0].cyclesheet[14]==0"></td> <!--{{specialCardInfo[0].cyclesheet[13]}}-->
<td ng-if="specialCardInfo[0].cyclesheet[14]==1"> <!--</td>-->
{{specialCardInfo[0].cyclesheet[13]}} <!--</tr>-->
</td> <!--</tbody>-->
</tr> <!--</table>-->
</tbody> <!--</div>-->
</table> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div>
</div>
<!--制证库--> <!--&lt;!&ndash;制证库&ndash;&gt;-->
<div class="panel panel-default" ng-if="specialCardInfo[0].prod.length>0"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].prod.length>0">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
制证库 <!--制证库-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>组号</th> <!--<th>组号</th>-->
<th>卸载数量</th> <!--<th>卸载数量</th>-->
<th>卸载日期</th> <!--<th>卸载日期</th>-->
<th>电写入数量</th> <!--<th>电写入数量</th>-->
<th>电写入日期</th> <!--<th>电写入日期</th>-->
<th>质检数量</th> <!--<th>质检数量</th>-->
<th>质检日期</th> <!--<th>质检日期</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].prod[0]}}</td> <!--<td>{{specialCardInfo[0].prod[0]}}</td>-->
<td>{{specialCardInfo[0].prod[1]}}</td> <!--<td>{{specialCardInfo[0].prod[1]}}</td>-->
<td>{{specialCardInfo[0].prod[2]}}</td> <!--<td>{{specialCardInfo[0].prod[2]}}</td>-->
<td>{{specialCardInfo[0].prod[3]}}</td> <!--<td>{{specialCardInfo[0].prod[3]}}</td>-->
<td>{{specialCardInfo[0].prod[4]}}</td> <!--<td>{{specialCardInfo[0].prod[4]}}</td>-->
<td>{{specialCardInfo[0].prod[5]}}</td> <!--<td>{{specialCardInfo[0].prod[5]}}</td>-->
<td>{{specialCardInfo[0].prod[6]}}</td> <!--<td>{{specialCardInfo[0].prod[6]}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<!--受理库--> <!--&lt;!&ndash;受理库&ndash;&gt;-->
<div class="panel panel-default" ng-if="specialCardInfo[0].accu.length>0"> <!--<div class="panel panel-default" ng-if="specialCardInfo[0].accu.length>0">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
受理库 <!--受理库-->
</h3> <!--</h3>-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0px 15px 0px 15px;"> <!--<div style="float: left;padding:0px 15px 0px 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>组号</th> <!--<th>组号</th>-->
<th>装库日期</th> <!--<th>装库日期</th>-->
<th>组号状态</th> <!--<th>组号状态</th>-->
<th>合格数</th> <!--<th>合格数</th>-->
<th>不合格数</th> <!--<th>不合格数</th>-->
<th>核验日期</th> <!--<th>核验日期</th>-->
<th>核验人</th> <!--<th>核验人</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].accu[0]}}</td> <!--<td>{{specialCardInfo[0].accu[0]}}</td>-->
<td>{{specialCardInfo[0].accu[1]}}</td> <!--<td>{{specialCardInfo[0].accu[1]}}</td>-->
<td>{{specialCardInfo[0].accu[2]}}</td> <!--<td>{{specialCardInfo[0].accu[2]}}</td>-->
<td>{{specialCardInfo[0].accu[3]}}</td> <!--<td>{{specialCardInfo[0].accu[3]}}</td>-->
<td>{{specialCardInfo[0].accu[4]}}</td> <!--<td>{{specialCardInfo[0].accu[4]}}</td>-->
<td>{{specialCardInfo[0].accu[5]}}</td> <!--<td>{{specialCardInfo[0].accu[5]}}</td>-->
<td>{{specialCardInfo[0].accu[6]}}</td> <!--<td>{{specialCardInfo[0].accu[6]}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
<div ng-if="specialCardInfo[0].isGroup==11"> <!--<div ng-if="specialCardInfo[0].isGroup==11">-->
<div class="panel panel-default"> <!--<div class="panel panel-default">-->
<div class="panel-heading"> <!--<div class="panel-heading">-->
<h3 class="panel-title"> <!--<h3 class="panel-title">-->
循环单 <!--循环单-->
</h3>分配时间 <!--</h3>分配时间-->
</div> <!--</div>-->
<div class="panel-body" style="width: auto"> <!--<div class="panel-body" style="width: auto">-->
<div class="container" style="width: auto"> <!--<div class="container" style="width: auto">-->
<div style="float: left;padding:0 15px 0 15px;"> <!--<div style="float: left;padding:0 15px 0 15px;">-->
<table class="table"> <!--<table class="table">-->
<thead> <!--<thead>-->
<th>循环单流水号</th> <!--<th>循环单流水号</th>-->
<th>组号</th> <!--<th>组号</th>-->
<th>证件数量</th> <!--<th>证件数量</th>-->
<th>地市</th> <!--<th>地市</th>-->
<th>制证类型</th> <!--<th>制证类型</th>-->
<th>创建日期</th> <!--<th>创建日期</th>-->
<th>最后修改日期</th> <!--<th>最后修改日期</th>-->
<th>最后工序</th> <!--<th>最后工序</th>-->
<th>机器号</th> <!--<th>机器号</th>-->
<th>制证车间</th> <!--<th>制证车间</th>-->
<th>预定位接收时间</th> <!--<th>预定位接收时间</th>-->
<th>质检人</th> <!--<th>质检人</th>-->
<th>出库时间</th> <!--<th>出库时间</th>-->
<th>入库时间</th> <!--<th>入库时间</th>-->
<th>异常</th> <!--<th>异常</th>-->
</thead> <!--</thead>-->
<tbody> <!--<tbody>-->
<tr> <!--<tr>-->
<td>{{specialCardInfo[0].cycleSheetID}}</td> <!--<td>{{specialCardInfo[0].cycleSheetID}}</td>-->
<td>{{specialCardInfo[0].groupNum}}</td> <!--<td>{{specialCardInfo[0].groupNum}}</td>-->
<td>{{specialCardInfo[0].count}}</td> <!--<td>{{specialCardInfo[0].count}}</td>-->
<td>{{specialCardInfo[0].cityName}}</td> <!--<td>{{specialCardInfo[0].cityName}}</td>-->
<td>{{specialCardInfo[0].makeTypeName}}</td> <!--<td>{{specialCardInfo[0].makeTypeName}}</td>-->
<td>{{specialCardInfo[0].createDate}}</td> <!--<td>{{specialCardInfo[0].createDate}}</td>-->
<td>{{specialCardInfo[0].lastDate}}</td> <!--<td>{{specialCardInfo[0].lastDate}}</td>-->
<td>{{specialCardInfo[0].lastProcessName}}</td> <!--<td>{{specialCardInfo[0].lastProcessName}}</td>-->
<td>{{specialCardInfo[0].machine}}</td> <!--<td>{{specialCardInfo[0].machine}}</td>-->
<td ng-if="specialCardInfo[0].workShop=='p1'||specialCardInfo[0].workShop=='p3'"> <!--<td ng-if="specialCardInfo[0].workShop=='p1'||specialCardInfo[0].workShop=='p3'">-->
平一 <!--平一-->
</td> <!--</td>-->
<td ng-if="specialCardInfo[0].workShop=='p2'||specialCardInfo[0].workShop=='p4'"> <!--<td ng-if="specialCardInfo[0].workShop=='p2'||specialCardInfo[0].workShop=='p4'">-->
平二 <!--平二-->
</td> <!--</td>-->
<td>{{specialCardInfo[0].permanentPositionDate}}</td> <!--<td>{{specialCardInfo[0].permanentPositionDate}}</td>-->
<td>{{specialCardInfo[0].qualityinspection}}</td> <!--<td>{{specialCardInfo[0].qualityinspection}}</td>-->
<td>{{specialCardInfo[0].outbound}}</td> <!--<td>{{specialCardInfo[0].outbound}}</td>-->
<td>{{specialCardInfo[0].putInStorage}}</td> <!--<td>{{specialCardInfo[0].putInStorage}}</td>-->
<td ng-if="specialCardInfo[0].abnormal==0"></td> <!--<td ng-if="specialCardInfo[0].abnormal==0">无</td>-->
<td ng-if="specialCardInfo[0].abnormal==1">{{specialCardInfo[0].note}}</td> <!--<td ng-if="specialCardInfo[0].abnormal==1">{{specialCardInfo[0].note}}</td>-->
</tr> <!--</tr>-->
</tbody> <!--</tbody>-->
</table> <!--</table>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> <!--</div>-->
</div> </div>
</div> </div>
\ No newline at end of file
...@@ -3,5 +3,10 @@ package com.yxproject.start.service.impl; ...@@ -3,5 +3,10 @@ package com.yxproject.start.service.impl;
public class selectTest { public class selectTest {
public static void main(String args[]){ public static void main(String args[]){
Object c = 1111;
Long b=Long.valueOf(String.valueOf(c));
System.out.println(b);
System.out.println(c.getClass());
} }
} }
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