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.
 
 
 
 
 

22 rivejä
459 B

  1. package com.ffii.fpsms.m18.model
  2. /** StSearch Type */
  3. enum class StSearchType(val value: String) {
  4. PRODUCT("pro"),
  5. VENDOR("ven"),
  6. CUSTOMER("cus"),
  7. UNIT("unit"),
  8. CURRENCY("cur"),
  9. }
  10. /** M18 Common Master Data Request */
  11. data class M18CommonListRequest (
  12. val stSearch: String? = null,
  13. val params: String? = null,
  14. val conds: String? = null,
  15. )
  16. data class M18CommonLineRequest (
  17. val id: Long,
  18. val params: String? = null,
  19. )