7 lines
243 B
Plaintext
7 lines
243 B
Plaintext
package com.healthcare.ohctech.dto;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public record CityDto(Long id, String city, Integer acCost, Integer acAmbCharge, Integer nonAcCost, Integer nonAcAmbCharge, Long modifiedBy, LocalDateTime lastModified) {
|
|
}
|