add crud jabatan
This commit is contained in:
		| @@ -0,0 +1,24 @@ | ||||
| package com.iconplus.smartproc.model.request; | ||||
|  | ||||
| import com.iconplus.smartproc.helper.base.BaseRequest; | ||||
| import lombok.AllArgsConstructor; | ||||
| import lombok.Builder; | ||||
| import lombok.Data; | ||||
| import lombok.NoArgsConstructor; | ||||
| import org.springframework.data.domain.Pageable; | ||||
|  | ||||
| @Data | ||||
| @Builder | ||||
| @AllArgsConstructor | ||||
| @NoArgsConstructor | ||||
| public class JabatanRequest extends BaseRequest { | ||||
|  | ||||
|     private Long id; | ||||
|     private String jabatan; | ||||
|     private String keterangan; | ||||
|     private Long instansiId; | ||||
|     private Long bidangId; | ||||
|     private Boolean isActive; | ||||
|     private String search; | ||||
|     private transient Pageable pageable; | ||||
| } | ||||
		Reference in New Issue
	
	Block a user