加保护

This commit is contained in:
sxu 2024-10-23 17:20:40 +08:00
parent ef283145e0
commit c2bfd254bb
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,7 @@ public class InventoryAndWarehousingServiceImpl implements InventoryAndWarehousi
* @return
*/
public String genderBackCode() {
log.info("enter method genderBackCode");
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");
Date nowDate = DateUtils.getNowDate();
String format = dateFormat.format(nowDate);
@ -68,6 +69,7 @@ public class InventoryAndWarehousingServiceImpl implements InventoryAndWarehousi
} else {
code = "PD" + format + "-000" + taskNum;
}
log.info("end method genderBackCode" + code);
return code;
}