1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.matrix.codeGeneration.model;
|
| import java.util.Date;
|
| import com.matrix.codeGeneration.plugin.DateUtils;
|
| public class CommonData {
| @SuppressWarnings("unused")
| private String now;
|
| public String getNow() {
| return DateUtils.dateFormatStr(new Date(), "yyyy-MM-dd HH:mm");
| }
|
| public void setNow(String now) {
| this.now = now;
| }
|
| }
|
|