生产工单功能

This commit is contained in:
JinLu.Yin
2022-05-09 19:21:49 +08:00
parent 0b54f312fb
commit 70faef6f1d
17 changed files with 1512 additions and 16 deletions

View File

@@ -13,7 +13,7 @@ public class PartTypeNowDateHandler implements PartTypeTemplate {
@Override
public String partHandle(SysAutoCodePart sysAutoCodePart) {
String formartDate = sysAutoCodePart.getDateFormart();
return DateTimeFormatter.ofPattern(formartDate).format(LocalDateTime.now());
String formatDate = sysAutoCodePart.getDateFormat();
return DateTimeFormatter.ofPattern(formatDate).format(LocalDateTime.now());
}
}