7 lines
202 B
Plaintext
7 lines
202 B
Plaintext
|
package com.healthcare.ohctech.dto;
|
||
|
|
||
|
import java.time.LocalDateTime;
|
||
|
|
||
|
public record NutrientMasterDto(Long id, String nutrientName, String nutrientCode, String remark, Long modifiedBy, Long unitId) {
|
||
|
}
|