tobuildbatchaction.java

来自「移动彩信管理平台」· Java 代码 · 共 50 行

JAVA
50
字号
package com.my7g.zj.mobile.mms.web.action;

import java.util.Date;
import java.util.List;
import com.my7g.zj.mobile.mms.business.IBatchService;
import com.opensymphony.xwork2.ActionSupport;

public class ToBuildBatchAction extends ActionSupport {

	@Override
	public String execute() throws Exception {

		typeList = iBatchService.getSubType();
		date = new Date();
		System.out.println(date);
		return SUCCESS;
	}

	private IBatchService iBatchService;
	private List typeList;
	private Date date;
	
	
	
	public Date getDate() {
		return date;
	}

	public void setDate(Date date) {
		this.date = date;
	}

	public IBatchService getIBatchService() {
		return iBatchService;
	}

	public void setIBatchService(IBatchService batchService) {
		iBatchService = batchService;
	}

	public List getTypeList() {
		return typeList;
	}

	public void setTypeList(List typeList) {
		this.typeList = typeList;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?