PersonnelService.java
347 Bytes
package com.bsth.service;
import java.util.List;
import java.util.Map;
import com.bsth.entity.Personnel;
/**
* Created by xu on 16/6/15.
*/
public interface PersonnelService extends BaseService<Personnel, Integer> {
List<Map<String, String>> sreachPersonnel(String jobCode);
Map<String, Object> update(Personnel personnel);
}