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.
 
 
 
 
 

23 lines
485 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. BOM("udfbomforshop"),
  10. }
  11. /** M18 Common Master Data Request */
  12. data class M18CommonListRequest (
  13. val stSearch: String? = null,
  14. val params: String? = null,
  15. val conds: String? = null,
  16. )
  17. data class M18CommonLineRequest (
  18. val id: Long,
  19. val params: String? = null,
  20. )