This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.inno.utils; | |
| import sun.misc.BASE64Encoder; | |
| import javax.imageio.ImageIO; | |
| import javax.imageio.ImageReadParam; | |
| import javax.imageio.ImageReader; | |
| import javax.imageio.stream.ImageInputStream; | |
| import java.awt.*; | |
| import java.awt.image.BufferedImage; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" | |
| version="3.0"> | |
| <display-name>camera calibrate</display-name> | |
| <context-param> | |
| <param-name>contextConfigLocation</param-name> | |
| <param-value> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--springmvc start--> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-web</artifactId> | |
| <version>${spring.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-core</artifactId> | |
| <version>${spring.version}</version> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.service.ppuser; | |
| import java.net.URLDecoder; | |
| import java.util.Date; | |
| import java.util.List; | |
| import com.intel.domain.ITPStatus; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.stereotype.Service; | |
| import com.intel.appbean.ppuser.UserBean; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.service.ppuser; | |
| import java.util.List; | |
| import com.intel.appbean.ppuser.UserBean; | |
| import com.intel.model.ppuser.Ppuser; | |
| import com.intel.model.ppuser.PpuserDownloadQ2; | |
| import com.intel.model.ppuser.UserQ2; | |
| import com.intel.service.BaseService; | |
| public interface PpuserService extends BaseService<Ppuser> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.dao.ppuser; | |
| import java.util.List; | |
| import org.springframework.stereotype.Repository; | |
| import com.intel.dao.BaseDaoImpl; | |
| import com.intel.model.ppuser.Ppuser; | |
| import com.intel.model.ppuser.PpuserDownloadQ2; | |
| import com.intel.model.ppuser.UserQ2; | |
| @Repository("ppuserDao") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.dao.ppuser; | |
| import java.util.List; | |
| import com.intel.dao.BaseDao; | |
| import com.intel.model.ppuser.Ppuser; | |
| import com.intel.model.ppuser.PpuserDownloadQ2; | |
| import com.intel.model.ppuser.UserQ2; | |
| public interface PpuserDao extends BaseDao<Ppuser> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.service; | |
| import java.util.List; | |
| public interface BaseService<T> { | |
| public void insert(T model); | |
| public void delete(int... ids); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.dao; | |
| import java.lang.reflect.ParameterizedType; | |
| import java.lang.reflect.Type; | |
| import java.util.List; | |
| import org.apache.commons.collections.CollectionUtils; | |
| import org.apache.ibatis.session.ExecutorType; | |
| import org.apache.ibatis.session.SqlSession; | |
| import org.apache.ibatis.session.SqlSessionFactory; | |
| import org.apache.log4j.Logger; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.intel.dao; | |
| import java.util.List; | |
| public interface BaseDao<T> { | |
| public void insert(T model); | |
| public void delete(int... ids); |
NewerOlder