HtzzAssoZztxMapper.java 589 Bytes
Newer Older
yuquan.zhu committed
1 2
package cn.timer.api.dao.htzz;

邓实川 committed
3 4 5 6
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

yuquan.zhu committed
7 8
import org.springframework.stereotype.Repository;

邓实川 committed
9
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
yuquan.zhu committed
10 11 12 13 14 15 16 17 18

import cn.timer.api.bean.htzz.HtzzAssoZztx;

/**
 * 证照提醒表
 * 
 * @author Tang 2019-12-04
 */
@Repository
邓实川 committed
19
public interface HtzzAssoZztxMapper extends BaseMapper<HtzzAssoZztx> {
邓实川 committed
20 21 22
	public static void main(String[] args) {
		DateFormat format1 = new SimpleDateFormat("yyyy-MM-dd");
		String a = format1.format(new Date());
ilal committed
23
//		System.err.println(a);
邓实川 committed
24
	}
yuquan.zhu committed
25 26

}