|
|
@@ -0,0 +1,31 @@
|
|
|
+package com.style24.batch.biz.job.marketing;
|
|
|
+
|
|
|
+import com.gagaframework.web.parameter.GagaMap;
|
|
|
+import com.style24.batch.biz.job.TsbAbstractJob;
|
|
|
+import com.style24.persistence.domain.Customer;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+
|
|
|
+
|
|
|
+public class TsbCombackCouponNoticeJob extends TsbAbstractJob<Collection<Customer>, GagaMap, GagaMap> {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Collection<Customer> read() throws Exception {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GagaMap process(Collection<Customer> readItem) throws Exception {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GagaMap write(GagaMap convertedItem) throws Exception {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void notify(GagaMap resultItem) throws Exception {
|
|
|
+
|
|
|
+ }
|
|
|
+}
|