From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:44:19 +0800 Subject: [PATCH] 删除 --- src/main/java/com/gk/firework/Service/CustomerService.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Service/CustomerService.java b/src/main/java/com/gk/firework/Service/CustomerService.java new file mode 100644 index 0000000..3475bb2 --- /dev/null +++ b/src/main/java/com/gk/firework/Service/CustomerService.java @@ -0,0 +1,25 @@ +package com.gk.firework.Service; + +import com.alibaba.fastjson.JSONObject; +import com.baomidou.mybatisplus.extension.service.IService; +import com.gk.firework.Domain.CustomerInfo; +import org.springframework.web.multipart.MultipartFile; + +import java.text.ParseException; +import java.util.Date; + +/** + * @author : jingjy + * @date : 2021/3/31 14:19 + */ +public interface CustomerService extends IService<CustomerInfo> { + CustomerInfo createOrUpdate(JSONObject customer, Integer num, Date salesTime) throws ParseException; + + CustomerInfo getCustomerByIdCardNum(String idCardNum); + + CustomerInfo getCustomerBySaleOrder(String orderCode); + + void uploadPhoto(String idCard, MultipartFile file); + + void createOrUpdateCard(String idcardnum, Integer num, Date createdat) throws ParseException; +} -- Gitblit v1.9.2