You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 line
289 B

  1. package com.ffii.fpsms.m18.model
  2. import java.time.LocalDateTime
  3. data class SaveM18DataLogRequest (
  4. val id: Long?,
  5. val refType: String?,
  6. val m18Id: Long?,
  7. val m18LastModifyDate: LocalDateTime?,
  8. val dataLog: MutableMap<String, Any?>?,
  9. val status: Boolean? = true,
  10. )