| | |
| | | |
| | | import java.text.Collator; |
| | | import java.util.*; |
| | | |
| | | import com.ld.igds.m.service.HInoutCustomerService; |
| | | import com.ld.igds.models.InoutCustomer; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | * @description: |
| | | * @version: |
| | | * @data:2020年3月12日 |
| | | * |
| | | */ |
| | | @Component("inoutCustomerPR") |
| | | public class InoutCustomerPR { |
| | |
| | | public String delData(InoutCustomer data) { |
| | | return customerService.delData(data); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * inoutCustomerPR#queryListByParam |
| | | * 根据关键字查询,ID |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @Expose |
| | | public InoutCustomer queryListByParam(String id) { |
| | | Map<String, Object> param = new HashMap<>(); |
| | | param.put("id", id); |
| | | List<InoutCustomer> list = customerService.queryList(param); |
| | | |
| | | return list.get(0); |
| | | } |
| | | } |