dao표 최적화

1807 단어 DAO
//  ticket   hql                
String hql = "select new Ticket(id,name,address,activeDate,saleBeginTime,saleEndTime,thumbnail,pic,enteringman,enteringdate,status,datasource) from "+table+" where status = '   ' order by "+orderby+" "+desc;
   
ticket    
public Ticket(Integer id, String name, String address, String activeDate, Object saleBeginTime, Object saleEndTime,
			String thumbnail, String pic, String enteringman,
			Object enteringdate, String status, String datasource) {
		super();
		this.id = id;
		this.name = name;
		this.address = address;
		this.activeDate = activeDate;
		this.saleBeginTime = stringToTimestamp(saleBeginTime.toString());
		this.saleEndTime = stringToTimestamp(saleEndTime.toString());
		this.thumbnail = thumbnail;
		this.pic = pic;
		this.enteringman = enteringman;
		this.enteringdate = stringToTimestamp(enteringdate.toString());
		this.status = status;
		this.datasource = datasource;
	}
    
    // Property accessors
    /**
	* Timestamp
	* @param dateStr
	* @return
	*/
	public static Timestamp stringToTimestamp(String dateStr){
	  
	   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	   Calendar cal = Calendar.getInstance();
	   try {
	    Date date = sdf.parse(dateStr);
	    date.getTime();
	    cal.setTime(date);
	    return new Timestamp(cal.getTimeInMillis());
	   } catch (ParseException e) {
	    e.printStackTrace();
	   }
	  
	   cal.setTime(new Date());
	   return new Timestamp(cal.getTimeInMillis());
	}

좋은 웹페이지 즐겨찾기