parent
11a81ba7b6
commit
cf805e51b8
@ -0,0 +1,4 @@
|
|||||||
|
package au.com.royalpay.payment.manage.activities.monsettledelay.core;
|
||||||
|
|
||||||
|
public interface ActMonDelaySettleService {
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package au.com.royalpay.payment.manage.activities.monsettledelay.core.impls;
|
||||||
|
|
||||||
|
import au.com.royalpay.payment.manage.activities.monsettledelay.core.ActMonDelaySettleService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class ActMonDelaySettleServiceImp implements ActMonDelaySettleService{
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package au.com.royalpay.payment.manage.mappers.act;
|
||||||
|
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoMapper;
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoSql;
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.SqlType;
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
|
||||||
|
@AutoMapper(tablename = "act_mon_delay_settle", pkName = "id")
|
||||||
|
public interface ActMonDelaySettleMapper {
|
||||||
|
@AutoSql(type = SqlType.INSERT)
|
||||||
|
void save(JSONObject dietOrderInfo);
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package au.com.royalpay.payment.manage.mappers.act;
|
||||||
|
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoMapper;
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.AutoSql;
|
||||||
|
import cn.yixblog.support.mybatis.autosql.annotations.SqlType;
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
|
||||||
|
@AutoMapper(tablename = "act_mon_delay_settle_redpack", pkName = "id")
|
||||||
|
public interface ActMonDelaySettleRedPackMapper {
|
||||||
|
@AutoSql(type = SqlType.INSERT)
|
||||||
|
void save(JSONObject dietOrderInfo);
|
||||||
|
}
|
Loading…
Reference in new issue