diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapAccount/SapAccountController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapAccount/SapAccountController.java deleted file mode 100644 index 1353fbf..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapAccount/SapAccountController.java +++ /dev/null @@ -1,104 +0,0 @@ -package com.ruoyi.web.controller.sapAccount; - -import java.util.List; -import javax.servlet.http.HttpServletResponse; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.sapAccount.domain.SapAccount; -import com.ruoyi.sapAccount.service.ISapAccountService; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.common.core.page.TableDataInfo; - -/** - * 业务账户Controller - * - * @author ruoyi - * @date 2024-03-11 - */ -@RestController -@RequestMapping("/sapAccount/sapAccount") -public class SapAccountController extends BaseController -{ - @Autowired - private ISapAccountService sapAccountService; - - /** - * 查询业务账户列表 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:list')") - @GetMapping("/list") - public TableDataInfo list(SapAccount sapAccount) - { - startPage(); - List list = sapAccountService.selectSapAccountList(sapAccount); - return getDataTable(list); - } - - /** - * 导出业务账户列表 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:export')") - @Log(title = "业务账户", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, SapAccount sapAccount) - { - List list = sapAccountService.selectSapAccountList(sapAccount); - ExcelUtil util = new ExcelUtil(SapAccount.class); - util.exportExcel(response, list, "业务账户数据"); - } - - /** - * 获取业务账户详细信息 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:query')") - @GetMapping(value = "/{id}") - public AjaxResult getInfo(@PathVariable("id") Long id) - { - return success(sapAccountService.selectSapAccountById(id)); - } - - /** - * 新增业务账户 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:add')") - @Log(title = "业务账户", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody SapAccount sapAccount) - { - return toAjax(sapAccountService.insertSapAccount(sapAccount)); - } - - /** - * 修改业务账户 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:edit')") - @Log(title = "业务账户", businessType = BusinessType.UPDATE) - @PutMapping - public AjaxResult edit(@RequestBody SapAccount sapAccount) - { - return toAjax(sapAccountService.updateSapAccount(sapAccount)); - } - - /** - * 删除业务账户 - */ - @PreAuthorize("@ss.hasPermi('sapAccount:sapAccount:remove')") - @Log(title = "业务账户", businessType = BusinessType.DELETE) - @DeleteMapping("/{ids}") - public AjaxResult remove(@PathVariable Long[] ids) - { - return toAjax(sapAccountService.deleteSapAccountByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapCustomer/SapCustomerController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapCustomer/SapCustomerController.java deleted file mode 100644 index 56bed3e..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapCustomer/SapCustomerController.java +++ /dev/null @@ -1,106 +0,0 @@ -package com.ruoyi.web.controller.sapCustomer; - -import javax.servlet.http.HttpServletResponse; - -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.sapCustomer.domain.SapCustomer; -import com.ruoyi.sapCustomer.service.ISapCustomerService; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.common.core.page.TableDataInfo; - -import java.util.List; - -/** - * 客户管理Controller - * - * @author ruoyi - * @date 2024-03-11 - */ -@RestController -@RequestMapping("/sapCustomer/sapCustomer") -public class SapCustomerController extends BaseController -{ - @Autowired - private ISapCustomerService sapCustomerService; - - /** - * 查询客户管理列表 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:list')") - @GetMapping("/list") - public TableDataInfo list(SapCustomer sapCustomer) - { - startPage(); - List list = sapCustomerService.selectSapCustomerList(sapCustomer); - return getDataTable(list); - } - - /** - * 导出客户管理列表 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:export')") - @Log(title = "客户管理", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, SapCustomer sapCustomer) - { - List list = sapCustomerService.selectSapCustomerList(sapCustomer); - ExcelUtil util = new ExcelUtil(SapCustomer.class); - util.exportExcel(response, list, "客户管理数据"); - } - - /** - * 获取客户管理详细信息 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:query')") - @GetMapping(value = "/{customerId}") - public AjaxResult getInfo(@PathVariable("customerId") Long customerId) - { - return success(sapCustomerService.selectSapCustomerByCustomerId(customerId)); - } - - /** - * 新增客户管理 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:add')") - @Log(title = "客户管理", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody SapCustomer sapCustomer) - { - return toAjax(sapCustomerService.insertSapCustomer(sapCustomer)); - } - - /** - * 修改客户管理 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:edit')") - @Log(title = "客户管理", businessType = BusinessType.UPDATE) - @PutMapping - public AjaxResult edit(@RequestBody SapCustomer sapCustomer) - { - return toAjax(sapCustomerService.updateSapCustomer(sapCustomer)); - } - - /** - * 删除客户管理 - */ - @PreAuthorize("@ss.hasPermi('sapCustomer:sapCustomer:remove')") - @Log(title = "客户管理", businessType = BusinessType.DELETE) - @DeleteMapping("/{customerIds}") - public AjaxResult remove(@PathVariable Long[] customerIds) - { - return toAjax(sapCustomerService.deleteSapCustomerByCustomerIds(customerIds)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapMaterial/SapMaterialController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapMaterial/SapMaterialController.java deleted file mode 100644 index e76e685..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/sapMaterial/SapMaterialController.java +++ /dev/null @@ -1,104 +0,0 @@ -package com.ruoyi.web.controller.sapMaterial; - -import java.util.List; -import javax.servlet.http.HttpServletResponse; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.sapMaterial.domain.SapMaterial; -import com.ruoyi.sapMaterial.service.ISapMaterialService; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.common.core.page.TableDataInfo; - -/** - * 物料管理Controller - * - * @author ruoyi - * @date 2024-03-12 - */ -@RestController -@RequestMapping("/sapMaterial/sapMaterial") -public class SapMaterialController extends BaseController -{ - @Autowired - private ISapMaterialService sapMaterialService; - - /** - * 查询物料管理列表 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:list')") - @GetMapping("/list") - public TableDataInfo list(SapMaterial sapMaterial) - { - startPage(); - List list = sapMaterialService.selectSapMaterialList(sapMaterial); - return getDataTable(list); - } - - /** - * 导出物料管理列表 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:export')") - @Log(title = "物料管理", businessType = BusinessType.EXPORT) - @PostMapping("/export") - public void export(HttpServletResponse response, SapMaterial sapMaterial) - { - List list = sapMaterialService.selectSapMaterialList(sapMaterial); - ExcelUtil util = new ExcelUtil(SapMaterial.class); - util.exportExcel(response, list, "物料管理数据"); - } - - /** - * 获取物料管理详细信息 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:query')") - @GetMapping(value = "/{materialId}") - public AjaxResult getInfo(@PathVariable("materialId") Long materialId) - { - return success(sapMaterialService.selectSapMaterialByMaterialId(materialId)); - } - - /** - * 新增物料管理 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:add')") - @Log(title = "物料管理", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody SapMaterial sapMaterial) - { - return toAjax(sapMaterialService.insertSapMaterial(sapMaterial)); - } - - /** - * 修改物料管理 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:edit')") - @Log(title = "物料管理", businessType = BusinessType.UPDATE) - @PutMapping - public AjaxResult edit(@RequestBody SapMaterial sapMaterial) - { - return toAjax(sapMaterialService.updateSapMaterial(sapMaterial)); - } - - /** - * 删除物料管理 - */ - @PreAuthorize("@ss.hasPermi('sapMaterial:sapMaterial:remove')") - @Log(title = "物料管理", businessType = BusinessType.DELETE) - @DeleteMapping("/{materialIds}") - public AjaxResult remove(@PathVariable Long[] materialIds) - { - return toAjax(sapMaterialService.deleteSapMaterialByMaterialIds(materialIds)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXREQ.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXREQ.java deleted file mode 100644 index 23da159..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXREQ.java +++ /dev/null @@ -1,222 +0,0 @@ - -package com.ruoyi.web.webservice.contract; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * ��ͬ��ѯ - * - *

DT_OASD_HTCX_REQ complex type�� Java �ࡣ - * - *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� - * - *

- * <complexType name="DT_OASD_HTCX_REQ">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZUSER" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="HTQDRQ_S" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="HTQDRQ_E" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="KUNNR" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="HTBH2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ZYWY" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="KBK" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DT_OASD_HTCX_REQ") -public class DTOASDHTCXREQ { - - @XmlAttribute(name = "ZUSER") - protected String zuser; - @XmlAttribute(name = "HTQDRQ_S") - protected String htqdrqs; - @XmlAttribute(name = "HTQDRQ_E") - protected String htqdrqe; - @XmlAttribute(name = "KUNNR") - protected String kunnr; - @XmlAttribute(name = "HTBH2") - protected String htbh2; - @XmlAttribute(name = "ZYWY") - protected String zywy; - @XmlAttribute(name = "KBK") - protected String kbk; - - /** - * ��ȡzuser���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZUSER() { - return zuser; - } - - /** - * ����zuser���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZUSER(String value) { - this.zuser = value; - } - - /** - * ��ȡhtqdrqs���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTQDRQS() { - return htqdrqs; - } - - /** - * ����htqdrqs���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTQDRQS(String value) { - this.htqdrqs = value; - } - - /** - * ��ȡhtqdrqe���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTQDRQE() { - return htqdrqe; - } - - /** - * ����htqdrqe���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTQDRQE(String value) { - this.htqdrqe = value; - } - - /** - * ��ȡkunnr���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getKUNNR() { - return kunnr; - } - - /** - * ����kunnr���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKUNNR(String value) { - this.kunnr = value; - } - - /** - * ��ȡhtbh2���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTBH2() { - return htbh2; - } - - /** - * ����htbh2���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTBH2(String value) { - this.htbh2 = value; - } - - /** - * ��ȡzywy���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZYWY() { - return zywy; - } - - /** - * ����zywy���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZYWY(String value) { - this.zywy = value; - } - - /** - * ��ȡkbk���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getKBK() { - return kbk; - } - - /** - * ����kbk���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKBK(String value) { - this.kbk = value; - } - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXRESP.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXRESP.java deleted file mode 100644 index 68cefdf..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/DTOASDHTCXRESP.java +++ /dev/null @@ -1,1221 +0,0 @@ - -package com.ruoyi.web.webservice.contract; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * ��ͬ��ѯ - * - *

DT_OASD_HTCX_RESP complex type�� Java �ࡣ - * - *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� - * - *

- * <complexType name="DT_OASD_HTCX_RESP">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="HTDATA" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="HTBH2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTLB" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDZHTH" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="HTQDRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYWYMS" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDNAME" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTGZRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDBZ02" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="XM" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="HTZE" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTJE" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDXDJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="TJ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDCDBM" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDFHBZ01" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDFHJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYDZ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDFHQWY" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYFKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDDHKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTZFKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTZT" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDFHJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDKPJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDBLXTS" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZZJHQ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDHTDQZT" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZFINISH" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZFHRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="KBK" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYWLXBM" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDYWLXMS" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="ZSDKUNNR" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="PRSDT" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="VKORG" type="{http://www.w3.org/2001/XMLSchema}string" />
- *                 <attribute name="VTWEG" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *       <attribute name="ISTAT" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MESSAGE" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DT_OASD_HTCX_RESP", propOrder = { - "htdata" -}) -public class DTOASDHTCXRESP { - - @XmlElement(name = "HTDATA") - protected List htdata; - @XmlAttribute(name = "ISTAT") - protected String istat; - @XmlAttribute(name = "MESSAGE") - protected String message; - - /** - * Gets the value of the htdata property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the htdata property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHTDATA().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HTDATA } - * - * - */ - public List getHTDATA() { - if (htdata == null) { - htdata = new ArrayList(); - } - return this.htdata; - } - - /** - * ��ȡistat���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getISTAT() { - return istat; - } - - /** - * ����istat���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setISTAT(String value) { - this.istat = value; - } - - /** - * ��ȡmessage���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getMESSAGE() { - return message; - } - - /** - * ����message���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMESSAGE(String value) { - this.message = value; - } - - - /** - *

anonymous complex type�� Java �ࡣ - * - *

����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="HTBH2" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTLB" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDZHTH" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="HTQDRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYWYMS" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDNAME" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTGZRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDBZ02" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="XM" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="HTZE" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTJE" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDXDJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="TJ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDCDBM" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDFHBZ01" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDFHJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYJEHTJ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYDZ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDFHQWY" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYFKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDDHKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTZFKWY" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTZT" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDFHJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDKPJEQK" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDBLXTS" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZZJHQ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDHTDQZT" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZFINISH" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZFHRQ" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="KBK" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYWLXBM" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDYWLXMS" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="ZSDKUNNR" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="PRSDT" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="VKORG" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *       <attribute name="VTWEG" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class HTDATA { - - @XmlAttribute(name = "HTBH2") - protected String htbh2; - @XmlAttribute(name = "ZSDHTLB") - protected String zsdhtlb; - @XmlAttribute(name = "ZSDZHTH") - protected String zsdzhth; - @XmlAttribute(name = "HTQDRQ") - protected String htqdrq; - @XmlAttribute(name = "ZSDYWYMS") - protected String zsdywyms; - @XmlAttribute(name = "ZSDNAME") - protected String zsdname; - @XmlAttribute(name = "ZSDHTGZRQ") - protected String zsdhtgzrq; - @XmlAttribute(name = "ZSDBZ02") - protected String zsdbz02; - @XmlAttribute(name = "XM") - protected String xm; - @XmlAttribute(name = "HTZE") - protected String htze; - @XmlAttribute(name = "ZSDHTJE") - protected String zsdhtje; - @XmlAttribute(name = "ZSDXDJEHTJ") - protected String zsdxdjehtj; - @XmlAttribute(name = "TJ") - protected String tj; - @XmlAttribute(name = "ZSDCDBM") - protected String zsdcdbm; - @XmlAttribute(name = "ZSDFHBZ01") - protected String zsdfhbz01; - @XmlAttribute(name = "ZSDFHJEHTJ") - protected String zsdfhjehtj; - @XmlAttribute(name = "ZSDYJEHTJ") - protected String zsdyjehtj; - @XmlAttribute(name = "ZSDYDZ") - protected String zsdydz; - @XmlAttribute(name = "ZSDFHQWY") - protected String zsdfhqwy; - @XmlAttribute(name = "ZSDYFKWY") - protected String zsdyfkwy; - @XmlAttribute(name = "ZSDDHKWY") - protected String zsddhkwy; - @XmlAttribute(name = "ZSDHTZFKWY") - protected String zsdhtzfkwy; - @XmlAttribute(name = "ZSDHTZT") - protected String zsdhtzt; - @XmlAttribute(name = "ZSDHTJEQK") - protected String zsdhtjeqk; - @XmlAttribute(name = "ZSDFHJEQK") - protected String zsdfhjeqk; - @XmlAttribute(name = "ZSDKPJEQK") - protected String zsdkpjeqk; - @XmlAttribute(name = "ZSDBLXTS") - protected String zsdblxts; - @XmlAttribute(name = "ZZJHQ") - protected String zzjhq; - @XmlAttribute(name = "ZSDHTDQZT") - protected String zsdhtdqzt; - @XmlAttribute(name = "ZFINISH") - protected String zfinish; - @XmlAttribute(name = "ZFHRQ") - protected String zfhrq; - @XmlAttribute(name = "KBK") - protected String kbk; - @XmlAttribute(name = "ZSDYWLXBM") - protected String zsdywlxbm; - @XmlAttribute(name = "ZSDYWLXMS") - protected String zsdywlxms; - @XmlAttribute(name = "ZSDKUNNR") - protected String zsdkunnr; - @XmlAttribute(name = "PRSDT") - protected String prsdt; - @XmlAttribute(name = "VKORG") - protected String vkorg; - @XmlAttribute(name = "VTWEG") - protected String vtweg; - - /** - * ��ȡhtbh2���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTBH2() { - return htbh2; - } - - /** - * ����htbh2���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTBH2(String value) { - this.htbh2 = value; - } - - /** - * ��ȡzsdhtlb���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTLB() { - return zsdhtlb; - } - - /** - * ����zsdhtlb���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTLB(String value) { - this.zsdhtlb = value; - } - - /** - * ��ȡzsdzhth���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDZHTH() { - return zsdzhth; - } - - /** - * ����zsdzhth���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDZHTH(String value) { - this.zsdzhth = value; - } - - /** - * ��ȡhtqdrq���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTQDRQ() { - return htqdrq; - } - - /** - * ����htqdrq���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTQDRQ(String value) { - this.htqdrq = value; - } - - /** - * ��ȡzsdywyms���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYWYMS() { - return zsdywyms; - } - - /** - * ����zsdywyms���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYWYMS(String value) { - this.zsdywyms = value; - } - - /** - * ��ȡzsdname���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDNAME() { - return zsdname; - } - - /** - * ����zsdname���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDNAME(String value) { - this.zsdname = value; - } - - /** - * ��ȡzsdhtgzrq���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTGZRQ() { - return zsdhtgzrq; - } - - /** - * ����zsdhtgzrq���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTGZRQ(String value) { - this.zsdhtgzrq = value; - } - - /** - * ��ȡzsdbz02���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDBZ02() { - return zsdbz02; - } - - /** - * ����zsdbz02���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDBZ02(String value) { - this.zsdbz02 = value; - } - - /** - * ��ȡxm���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getXM() { - return xm; - } - - /** - * ����xm���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setXM(String value) { - this.xm = value; - } - - /** - * ��ȡhtze���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getHTZE() { - return htze; - } - - /** - * ����htze���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHTZE(String value) { - this.htze = value; - } - - /** - * ��ȡzsdhtje���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTJE() { - return zsdhtje; - } - - /** - * ����zsdhtje���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTJE(String value) { - this.zsdhtje = value; - } - - /** - * ��ȡzsdxdjehtj���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDXDJEHTJ() { - return zsdxdjehtj; - } - - /** - * ����zsdxdjehtj���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDXDJEHTJ(String value) { - this.zsdxdjehtj = value; - } - - /** - * ��ȡtj���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getTJ() { - return tj; - } - - /** - * ����tj���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTJ(String value) { - this.tj = value; - } - - /** - * ��ȡzsdcdbm���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDCDBM() { - return zsdcdbm; - } - - /** - * ����zsdcdbm���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDCDBM(String value) { - this.zsdcdbm = value; - } - - /** - * ��ȡzsdfhbz01���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDFHBZ01() { - return zsdfhbz01; - } - - /** - * ����zsdfhbz01���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDFHBZ01(String value) { - this.zsdfhbz01 = value; - } - - /** - * ��ȡzsdfhjehtj���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDFHJEHTJ() { - return zsdfhjehtj; - } - - /** - * ����zsdfhjehtj���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDFHJEHTJ(String value) { - this.zsdfhjehtj = value; - } - - /** - * ��ȡzsdyjehtj���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYJEHTJ() { - return zsdyjehtj; - } - - /** - * ����zsdyjehtj���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYJEHTJ(String value) { - this.zsdyjehtj = value; - } - - /** - * ��ȡzsdydz���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYDZ() { - return zsdydz; - } - - /** - * ����zsdydz���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYDZ(String value) { - this.zsdydz = value; - } - - /** - * ��ȡzsdfhqwy���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDFHQWY() { - return zsdfhqwy; - } - - /** - * ����zsdfhqwy���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDFHQWY(String value) { - this.zsdfhqwy = value; - } - - /** - * ��ȡzsdyfkwy���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYFKWY() { - return zsdyfkwy; - } - - /** - * ����zsdyfkwy���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYFKWY(String value) { - this.zsdyfkwy = value; - } - - /** - * ��ȡzsddhkwy���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDDHKWY() { - return zsddhkwy; - } - - /** - * ����zsddhkwy���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDDHKWY(String value) { - this.zsddhkwy = value; - } - - /** - * ��ȡzsdhtzfkwy���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTZFKWY() { - return zsdhtzfkwy; - } - - /** - * ����zsdhtzfkwy���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTZFKWY(String value) { - this.zsdhtzfkwy = value; - } - - /** - * ��ȡzsdhtzt���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTZT() { - return zsdhtzt; - } - - /** - * ����zsdhtzt���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTZT(String value) { - this.zsdhtzt = value; - } - - /** - * ��ȡzsdhtjeqk���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTJEQK() { - return zsdhtjeqk; - } - - /** - * ����zsdhtjeqk���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTJEQK(String value) { - this.zsdhtjeqk = value; - } - - /** - * ��ȡzsdfhjeqk���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDFHJEQK() { - return zsdfhjeqk; - } - - /** - * ����zsdfhjeqk���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDFHJEQK(String value) { - this.zsdfhjeqk = value; - } - - /** - * ��ȡzsdkpjeqk���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDKPJEQK() { - return zsdkpjeqk; - } - - /** - * ����zsdkpjeqk���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDKPJEQK(String value) { - this.zsdkpjeqk = value; - } - - /** - * ��ȡzsdblxts���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDBLXTS() { - return zsdblxts; - } - - /** - * ����zsdblxts���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDBLXTS(String value) { - this.zsdblxts = value; - } - - /** - * ��ȡzzjhq���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZZJHQ() { - return zzjhq; - } - - /** - * ����zzjhq���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZZJHQ(String value) { - this.zzjhq = value; - } - - /** - * ��ȡzsdhtdqzt���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDHTDQZT() { - return zsdhtdqzt; - } - - /** - * ����zsdhtdqzt���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDHTDQZT(String value) { - this.zsdhtdqzt = value; - } - - /** - * ��ȡzfinish���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZFINISH() { - return zfinish; - } - - /** - * ����zfinish���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZFINISH(String value) { - this.zfinish = value; - } - - /** - * ��ȡzfhrq���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZFHRQ() { - return zfhrq; - } - - /** - * ����zfhrq���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZFHRQ(String value) { - this.zfhrq = value; - } - - /** - * ��ȡkbk���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getKBK() { - return kbk; - } - - /** - * ����kbk���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKBK(String value) { - this.kbk = value; - } - - /** - * ��ȡzsdywlxbm���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYWLXBM() { - return zsdywlxbm; - } - - /** - * ����zsdywlxbm���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYWLXBM(String value) { - this.zsdywlxbm = value; - } - - /** - * ��ȡzsdywlxms���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDYWLXMS() { - return zsdywlxms; - } - - /** - * ����zsdywlxms���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDYWLXMS(String value) { - this.zsdywlxms = value; - } - - /** - * ��ȡzsdkunnr���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getZSDKUNNR() { - return zsdkunnr; - } - - /** - * ����zsdkunnr���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZSDKUNNR(String value) { - this.zsdkunnr = value; - } - - /** - * ��ȡprsdt���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getPRSDT() { - return prsdt; - } - - /** - * ����prsdt���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPRSDT(String value) { - this.prsdt = value; - } - - /** - * ��ȡvkorg���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getVKORG() { - return vkorg; - } - - /** - * ����vkorg���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVKORG(String value) { - this.vkorg = value; - } - - /** - * ��ȡvtweg���Ե�ֵ�� - * - * @return - * possible object is - * {@link String } - * - */ - public String getVTWEG() { - return vtweg; - } - - /** - * ����vtweg���Ե�ֵ�� - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVTWEG(String value) { - this.vtweg = value; - } - - } - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/ObjectFactory.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/ObjectFactory.java deleted file mode 100644 index db90878..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/ObjectFactory.java +++ /dev/null @@ -1,79 +0,0 @@ - -package com.ruoyi.web.webservice.contract; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the com.jncable.sd.htcx package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _MTOASDHTCXREQ_QNAME = new QName("http://jncable.com/SD/HTCX", "MT_OASD_HTCX_REQ"); - private final static QName _MTOASDHTCXRESP_QNAME = new QName("http://jncable.com/SD/HTCX", "MT_OASD_HTCX_RESP"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.jncable.sd.htcx - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link DTOASDHTCXRESP } - * - */ - public DTOASDHTCXRESP createDTOASDHTCXRESP() { - return new DTOASDHTCXRESP(); - } - - /** - * Create an instance of {@link DTOASDHTCXREQ } - * - */ - public DTOASDHTCXREQ createDTOASDHTCXREQ() { - return new DTOASDHTCXREQ(); - } - - /** - * Create an instance of {@link DTOASDHTCXRESP.HTDATA } - * - */ - public DTOASDHTCXRESP.HTDATA createDTOASDHTCXRESPHTDATA() { - return new DTOASDHTCXRESP.HTDATA(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DTOASDHTCXREQ }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://jncable.com/SD/HTCX", name = "MT_OASD_HTCX_REQ") - public JAXBElement createMTOASDHTCXREQ(DTOASDHTCXREQ value) { - return new JAXBElement(_MTOASDHTCXREQ_QNAME, DTOASDHTCXREQ.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DTOASDHTCXRESP }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://jncable.com/SD/HTCX", name = "MT_OASD_HTCX_RESP") - public JAXBElement createMTOASDHTCXRESP(DTOASDHTCXRESP value) { - return new JAXBElement(_MTOASDHTCXRESP_QNAME, DTOASDHTCXRESP.class, null, value); - } - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUT.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUT.java deleted file mode 100644 index 119a523..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUT.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.ruoyi.web.webservice.contract; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.2 - * - */ -@WebService(name = "SI_OASD_HTCX_OUT", targetNamespace = "http://jncable.com/SD/HTCX") -@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) -@XmlSeeAlso({ - ObjectFactory.class -}) -public interface SIOASDHTCXOUT { - - - /** - * - * @param mtOASDHTCXREQ - * @return - * returns com.jncable.sd.htcx.DTOASDHTCXRESP - */ - @WebMethod(operationName = "SI_OASD_HTCX_OUT", action = "http://sap.com/xi/WebService/soap1.1") - @WebResult(name = "MT_OASD_HTCX_RESP", targetNamespace = "http://jncable.com/SD/HTCX", partName = "MT_OASD_HTCX_RESP") - public DTOASDHTCXRESP siOASDHTCXOUT( - @WebParam(name = "MT_OASD_HTCX_REQ", targetNamespace = "http://jncable.com/SD/HTCX", partName = "MT_OASD_HTCX_REQ") - DTOASDHTCXREQ mtOASDHTCXREQ); - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUTService.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUTService.java deleted file mode 100644 index 70e155a..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/SIOASDHTCXOUTService.java +++ /dev/null @@ -1,136 +0,0 @@ - -package com.ruoyi.web.webservice.contract; - -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.PropertySource; -import org.springframework.stereotype.Component; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceException; -import javax.xml.ws.WebServiceFeature; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.2.9-b130926.1035 - * Generated source version: 2.2 - * - */ -@WebServiceClient(name = "SI_OASD_HTCX_OUTService", targetNamespace = "http://jncable.com/SD/HTCX", wsdlLocation = "http://poprd:50000/dir/wsdl?p=ic/e1fa44a11fe33076ae0186750b236995") -public class SIOASDHTCXOUTService - extends Service -{ - private static URL SIOASDHTCXOUTSERVICE_WSDL_LOCATION; - private static WebServiceException SIOASDHTCXOUTSERVICE_EXCEPTION; - private static QName SIOASDHTCXOUTSERVICE_QNAME = new QName("http://jncable.com/SD/HTCX", "SI_OASD_HTCX_OUTService"); - - /** - * 赋值host - * @param host - */ - /*static { - URL url = null; - WebServiceException e = null; - try { - System.out.println(getHost()); - url = new URL("http://"+host+":50000/dir/wsdl?p=ic/e1fa44a11fe33076ae0186750b236995"); - } catch (MalformedURLException ex) { - e = new WebServiceException(ex); - } - SIOASDHTCXOUTSERVICE_WSDL_LOCATION = url; - SIOASDHTCXOUTSERVICE_EXCEPTION = e; - }*/ - public void setHost(String host) { - URL url = null; - WebServiceException e = null; - try { - url = new URL("http://"+host+":50000/dir/wsdl?p=ic/e1fa44a11fe33076ae0186750b236995"); - } catch (MalformedURLException ex) { - e = new WebServiceException(ex); - } - SIOASDHTCXOUTSERVICE_WSDL_LOCATION = url; - SIOASDHTCXOUTSERVICE_EXCEPTION = e; - } - - public SIOASDHTCXOUTService() { - super(__getWsdlLocation(), SIOASDHTCXOUTSERVICE_QNAME); - } - - public SIOASDHTCXOUTService(WebServiceFeature... features) { - super(__getWsdlLocation(), SIOASDHTCXOUTSERVICE_QNAME, features); - } - - public SIOASDHTCXOUTService(URL wsdlLocation) { - super(wsdlLocation, SIOASDHTCXOUTSERVICE_QNAME); - } - - public SIOASDHTCXOUTService(URL wsdlLocation, WebServiceFeature... features) { - super(wsdlLocation, SIOASDHTCXOUTSERVICE_QNAME, features); - } - - public SIOASDHTCXOUTService(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public SIOASDHTCXOUTService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) { - super(wsdlLocation, serviceName, features); - } - - /** - * - * @return - * returns SIOASDHTCXOUT - */ - @WebEndpoint(name = "HTTP_Port") - public SIOASDHTCXOUT getHTTPPort() { - return super.getPort(new QName("http://jncable.com/SD/HTCX", "HTTP_Port"), SIOASDHTCXOUT.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns SIOASDHTCXOUT - */ - @WebEndpoint(name = "HTTP_Port") - public SIOASDHTCXOUT getHTTPPort(WebServiceFeature... features) { - return super.getPort(new QName("http://jncable.com/SD/HTCX", "HTTP_Port"), SIOASDHTCXOUT.class, features); - } - - /** - * - * @return - * returns SIOASDHTCXOUT - */ - @WebEndpoint(name = "HTTPS_Port") - public SIOASDHTCXOUT getHTTPSPort() { - return super.getPort(new QName("http://jncable.com/SD/HTCX", "HTTPS_Port"), SIOASDHTCXOUT.class); - } - - /** - * - * @param features - * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns SIOASDHTCXOUT - */ - @WebEndpoint(name = "HTTPS_Port") - public SIOASDHTCXOUT getHTTPSPort(WebServiceFeature... features) { - return super.getPort(new QName("http://jncable.com/SD/HTCX", "HTTPS_Port"), SIOASDHTCXOUT.class, features); - } - - private static URL __getWsdlLocation() { - if (SIOASDHTCXOUTSERVICE_EXCEPTION!= null) { - throw SIOASDHTCXOUTSERVICE_EXCEPTION; - } - return SIOASDHTCXOUTSERVICE_WSDL_LOCATION; - } - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/contractUtils.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/contractUtils.java deleted file mode 100644 index e724857..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/contractUtils.java +++ /dev/null @@ -1,78 +0,0 @@ -package com.ruoyi.web.webservice.contract; - -import com.ruoyi.contract.domain.Contract; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.PropertySource; -import org.springframework.stereotype.Component; - -import java.net.Authenticator; -import java.net.PasswordAuthentication; -import java.util.List; - -@Component -@PropertySource("classpath:/common.yml") -public class contractUtils { - - private static String user; - public static String getUser() { - return user; - } - - @Value("${sapWebservice.user}") - public void setUser(String user) { - contractUtils.user = user; - } - - private static String psw; - public static String getPsw() { - return psw; - } - - @Value("${sapWebservice.psw}") - public void setPsw(String psw) { - contractUtils.psw = psw; - } - - private static String host; - public static String getHost() { - return host; - } - - @Value("${sapWebservice.host}") - public void setHost(String host) { - contractUtils.host = host; - } - - public static List data(Contract contract) { - Authenticator.setDefault(new Authenticator() { - - @Override - protected PasswordAuthentication getPasswordAuthentication() { - return new PasswordAuthentication(user, psw.toCharArray()); - } - }); - - SIOASDHTCXOUTService ss = new SIOASDHTCXOUTService(); - ss.setHost(host); - - SIOASDHTCXOUT si = ss.getHTTPPort(); - DTOASDHTCXREQ d = new DTOASDHTCXREQ(); - - String beginDate = contract.getContractDateRange()[0]; - beginDate = beginDate.substring(0, 4) + beginDate.substring(5, 7) + beginDate.substring(8); - - String endDate = contract.getContractDateRange()[1]; - endDate = endDate.substring(0, 4) + endDate.substring(5, 7) + endDate.substring(8); - - d.setHTQDRQS(beginDate); - d.setHTQDRQE(endDate); - d.setKUNNR(contract.getContractCustom()); - d.setHTBH2(contract.getContractNo()); - d.setZYWY(contract.getContractSalesmanNo()); - - DTOASDHTCXRESP dt = si.siOASDHTCXOUT(d); - List HTDATA = dt.getHTDATA(); - return HTDATA; - - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/package-info.java b/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/package-info.java deleted file mode 100644 index 6c6aa7f..0000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/webservice/contract/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://jncable.com/SD/HTCX") -package com.ruoyi.web.webservice.contract; diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/domain/SapAccount.java b/ruoyi-system/src/main/java/com/ruoyi/sapAccount/domain/SapAccount.java deleted file mode 100644 index 69651c1..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/domain/SapAccount.java +++ /dev/null @@ -1,93 +0,0 @@ -package com.ruoyi.sapAccount.domain; - -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; - -/** - * 业务账户对象 sap_account - * - * @author ruoyi - * @date 2024-03-11 - */ -public class SapAccount extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** */ - private Long id; - - /** 登录账号 */ - @Excel(name = "登录账号") - private String userName; - - /** 登录名 */ - @Excel(name = "登录名") - private String nickName; - - /** 账户 */ - @Excel(name = "账户") - private String sapBm; - - /** 账户名 */ - @Excel(name = "账户名") - private String sapName; - - /** 片区 */ - @Excel(name = "片区") - private String sapArea; - - public void setId(Long id) - { - this.id = id; - } - - public Long getId() - { - return id; - } - public String getNickName() {return nickName;} - - public void setNickName(String nickName) {this.nickName = nickName;} - public String getUserName() {return userName;} - - public void setUserName(String userName) {this.userName = userName;} - public void setSapBm(String sapBm) - { - this.sapBm = sapBm; - } - - public String getSapBm() - { - return sapBm; - } - public void setSapName(String sapName) - { - this.sapName = sapName; - } - - public String getSapName() - { - return sapName; - } - public void setSapArea(String sapArea) - { - this.sapArea = sapArea; - } - - public String getSapArea() - { - return sapArea; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("id", getId()) - .append("sapBm", getSapBm()) - .append("sapName", getSapName()) - .append("sapArea", getSapArea()) - .toString(); - } -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/mapper/SapAccountMapper.java b/ruoyi-system/src/main/java/com/ruoyi/sapAccount/mapper/SapAccountMapper.java deleted file mode 100644 index 8f453c4..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/mapper/SapAccountMapper.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.sapAccount.mapper; - -import java.util.List; -import com.ruoyi.sapAccount.domain.SapAccount; - -/** - * 业务账户Mapper接口 - * - * @author ruoyi - * @date 2024-03-11 - */ -public interface SapAccountMapper -{ - /** - * 查询业务账户 - * - * @param id 业务账户主键 - * @return 业务账户 - */ - public SapAccount selectSapAccountById(Long id); - - /** - * 查询业务账户列表 - * - * @param sapAccount 业务账户 - * @return 业务账户集合 - */ - public List selectSapAccountList(SapAccount sapAccount); - - /** - * 新增业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - public int insertSapAccount(SapAccount sapAccount); - - /** - * 修改业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - public int updateSapAccount(SapAccount sapAccount); - - /** - * 删除业务账户 - * - * @param id 业务账户主键 - * @return 结果 - */ - public int deleteSapAccountById(Long id); - - /** - * 批量删除业务账户 - * - * @param ids 需要删除的数据主键集合 - * @return 结果 - */ - public int deleteSapAccountByIds(Long[] ids); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/ISapAccountService.java b/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/ISapAccountService.java deleted file mode 100644 index ad86b17..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/ISapAccountService.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.sapAccount.service; - -import java.util.List; -import com.ruoyi.sapAccount.domain.SapAccount; - -/** - * 业务账户Service接口 - * - * @author ruoyi - * @date 2024-03-11 - */ -public interface ISapAccountService -{ - /** - * 查询业务账户 - * - * @param id 业务账户主键 - * @return 业务账户 - */ - public SapAccount selectSapAccountById(Long id); - - /** - * 查询业务账户列表 - * - * @param sapAccount 业务账户 - * @return 业务账户集合 - */ - public List selectSapAccountList(SapAccount sapAccount); - - /** - * 新增业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - public int insertSapAccount(SapAccount sapAccount); - - /** - * 修改业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - public int updateSapAccount(SapAccount sapAccount); - - /** - * 批量删除业务账户 - * - * @param ids 需要删除的业务账户主键集合 - * @return 结果 - */ - public int deleteSapAccountByIds(Long[] ids); - - /** - * 删除业务账户信息 - * - * @param id 业务账户主键 - * @return 结果 - */ - public int deleteSapAccountById(Long id); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/impl/SapAccountServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/impl/SapAccountServiceImpl.java deleted file mode 100644 index 9b58406..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapAccount/service/impl/SapAccountServiceImpl.java +++ /dev/null @@ -1,93 +0,0 @@ -package com.ruoyi.sapAccount.service.impl; - -import java.util.List; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import com.ruoyi.sapAccount.mapper.SapAccountMapper; -import com.ruoyi.sapAccount.domain.SapAccount; -import com.ruoyi.sapAccount.service.ISapAccountService; - -/** - * 业务账户Service业务层处理 - * - * @author ruoyi - * @date 2024-03-11 - */ -@Service -public class SapAccountServiceImpl implements ISapAccountService -{ - @Autowired - private SapAccountMapper sapAccountMapper; - - /** - * 查询业务账户 - * - * @param id 业务账户主键 - * @return 业务账户 - */ - @Override - public SapAccount selectSapAccountById(Long id) - { - return sapAccountMapper.selectSapAccountById(id); - } - - /** - * 查询业务账户列表 - * - * @param sapAccount 业务账户 - * @return 业务账户 - */ - @Override - public List selectSapAccountList(SapAccount sapAccount) - { - return sapAccountMapper.selectSapAccountList(sapAccount); - } - - /** - * 新增业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - @Override - public int insertSapAccount(SapAccount sapAccount) - { - return sapAccountMapper.insertSapAccount(sapAccount); - } - - /** - * 修改业务账户 - * - * @param sapAccount 业务账户 - * @return 结果 - */ - @Override - public int updateSapAccount(SapAccount sapAccount) - { - return sapAccountMapper.updateSapAccount(sapAccount); - } - - /** - * 批量删除业务账户 - * - * @param ids 需要删除的业务账户主键 - * @return 结果 - */ - @Override - public int deleteSapAccountByIds(Long[] ids) - { - return sapAccountMapper.deleteSapAccountByIds(ids); - } - - /** - * 删除业务账户信息 - * - * @param id 业务账户主键 - * @return 结果 - */ - @Override - public int deleteSapAccountById(Long id) - { - return sapAccountMapper.deleteSapAccountById(id); - } -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/domain/SapCustomer.java b/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/domain/SapCustomer.java deleted file mode 100644 index c30e52d..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/domain/SapCustomer.java +++ /dev/null @@ -1,98 +0,0 @@ -package com.ruoyi.sapCustomer.domain; - -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; - -/** - * 客户管理对象 sap_customer - * - * @author ruoyi - * @date 2024-03-11 - */ -public class SapCustomer extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** id */ - private Long customerId; - - /** 编码 */ - @Excel(name = "编码") - private String customerKunnr; - - /** 名称1 */ - @Excel(name = "名称1") - private String customerName1; - - /** 名称2 */ - @Excel(name = "名称2") - private String customerName2; - - private String customerName; - - /** 是否停用 */ - @Excel(name = "是否停用") - private String customerState; - - public void setCustomerId(Long customerId) - { - this.customerId = customerId; - } - - public Long getCustomerId() - { - return customerId; - } - public void setCustomerKunnr(String customerKunnr) - { - this.customerKunnr = customerKunnr; - } - - public String getCustomerKunnr() - { - return customerKunnr; - } - public void setCustomerName1(String customerName1) - { - this.customerName1 = customerName1; - } - - public String getCustomerName1() - { - return customerName1; - } - public void setCustomerName2(String customerName2) - { - this.customerName2 = customerName2; - } - - public String getCustomerName2() - { - return customerName2; - } - public void setCustomerState(String customerState) - { - this.customerState = customerState; - } - - public String getCustomerState() - { - return customerState; - } - public String getCustomerName() {return customerName;} - - public void setCustomerName(String customerName) {this.customerName = customerName;} - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("customerId", getCustomerId()) - .append("customerKunnr", getCustomerKunnr()) - .append("customerName1", getCustomerName1()) - .append("customerName2", getCustomerName2()) - .append("customerState", getCustomerState()) - .toString(); - } -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/mapper/SapCustomerMapper.java b/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/mapper/SapCustomerMapper.java deleted file mode 100644 index 2b9e92c..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/mapper/SapCustomerMapper.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.sapCustomer.mapper; - -import com.ruoyi.sapCustomer.domain.SapCustomer; - -import java.util.List; - -/** - * 客户管理Mapper接口 - * - * @author ruoyi - * @date 2024-03-11 - */ -public interface SapCustomerMapper -{ - /** - * 查询客户管理 - * - * @param customerId 客户管理主键 - * @return 客户管理 - */ - public SapCustomer selectSapCustomerByCustomerId(Long customerId); - - /** - * 查询客户管理列表 - * - * @param sapCustomer 客户管理 - * @return 客户管理集合 - */ - public List selectSapCustomerList(SapCustomer sapCustomer); - - /** - * 新增客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - public int insertSapCustomer(SapCustomer sapCustomer); - - /** - * 修改客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - public int updateSapCustomer(SapCustomer sapCustomer); - - /** - * 删除客户管理 - * - * @param customerId 客户管理主键 - * @return 结果 - */ - public int deleteSapCustomerByCustomerId(Long customerId); - - /** - * 批量删除客户管理 - * - * @param customerIds 需要删除的数据主键集合 - * @return 结果 - */ - public int deleteSapCustomerByCustomerIds(Long[] customerIds); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/ISapCustomerService.java b/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/ISapCustomerService.java deleted file mode 100644 index 12a9bdd..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/ISapCustomerService.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.ruoyi.sapCustomer.service; - -import com.ruoyi.sapCustomer.domain.SapCustomer; - -import java.util.List; - -/** - * 客户管理Service接口 - * - * @author ruoyi - * @date 2024-03-11 - */ -public interface ISapCustomerService -{ - /** - * 查询客户管理 - * - * @param customerId 客户管理主键 - * @return 客户管理 - */ - public SapCustomer selectSapCustomerByCustomerId(Long customerId); - - /** - * 查询客户管理列表 - * - * @param sapCustomer 客户管理 - * @return 客户管理集合 - */ - public List selectSapCustomerList(SapCustomer sapCustomer); - - /** - * 新增客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - public int insertSapCustomer(SapCustomer sapCustomer); - - /** - * 修改客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - public int updateSapCustomer(SapCustomer sapCustomer); - - /** - * 批量删除客户管理 - * - * @param customerIds 需要删除的客户管理主键集合 - * @return 结果 - */ - public int deleteSapCustomerByCustomerIds(Long[] customerIds); - - /** - * 删除客户管理信息 - * - * @param customerId 客户管理主键 - * @return 结果 - */ - public int deleteSapCustomerByCustomerId(Long customerId); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/impl/SapCustomerServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/impl/SapCustomerServiceImpl.java deleted file mode 100644 index dbde095..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapCustomer/service/impl/SapCustomerServiceImpl.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.ruoyi.sapCustomer.service.impl; - -import com.ruoyi.sapCustomer.domain.SapCustomer; -import com.ruoyi.sapCustomer.mapper.SapCustomerMapper; -import com.ruoyi.sapCustomer.service.ISapCustomerService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * 客户管理Service业务层处理 - * - * @author ruoyi - * @date 2024-03-11 - */ -@Service -public class SapCustomerServiceImpl implements ISapCustomerService -{ - @Autowired - private SapCustomerMapper sapCustomerMapper; - - /** - * 查询客户管理 - * - * @param customerId 客户管理主键 - * @return 客户管理 - */ - @Override - public SapCustomer selectSapCustomerByCustomerId(Long customerId) - { - return sapCustomerMapper.selectSapCustomerByCustomerId(customerId); - } - - /** - * 查询客户管理列表 - * - * @param sapCustomer 客户管理 - * @return 客户管理 - */ - @Override - public List selectSapCustomerList(SapCustomer sapCustomer) - { - return sapCustomerMapper.selectSapCustomerList(sapCustomer); - } - - /** - * 新增客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - @Override - public int insertSapCustomer(SapCustomer sapCustomer) - { - return sapCustomerMapper.insertSapCustomer(sapCustomer); - } - - /** - * 修改客户管理 - * - * @param sapCustomer 客户管理 - * @return 结果 - */ - @Override - public int updateSapCustomer(SapCustomer sapCustomer) - { - return sapCustomerMapper.updateSapCustomer(sapCustomer); - } - - /** - * 批量删除客户管理 - * - * @param customerIds 需要删除的客户管理主键 - * @return 结果 - */ - @Override - public int deleteSapCustomerByCustomerIds(Long[] customerIds) - { - return sapCustomerMapper.deleteSapCustomerByCustomerIds(customerIds); - } - - /** - * 删除客户管理信息 - * - * @param customerId 客户管理主键 - * @return 结果 - */ - @Override - public int deleteSapCustomerByCustomerId(Long customerId) - { - return sapCustomerMapper.deleteSapCustomerByCustomerId(customerId); - } -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/domain/SapMaterial.java b/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/domain/SapMaterial.java deleted file mode 100644 index 87ad962..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/domain/SapMaterial.java +++ /dev/null @@ -1,297 +0,0 @@ -package com.ruoyi.sapMaterial.domain; - -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; - -/** - * 物料管理对象 sap_material - * - * @author ruoyi - * @date 2024-03-12 - */ -public class SapMaterial extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 物料id */ - private Long materialId; - - /** 编码 */ - @Excel(name = "编码") - private String materialMatnr; - - /** 名称 */ - @Excel(name = "名称") - private String materialMaktx; - - /** 销售组织 */ - @Excel(name = "销售组织") - private String materialVkorg; - - /** 分销渠道 */ - @Excel(name = "分销渠道") - private String materialVtweg; - - /** 单位 */ - @Excel(name = "单位") - private String materialMeins; - - /** 产品组 */ - @Excel(name = "产品组") - private String materialSpart; - - /** 产品组描述 */ - @Excel(name = "产品组描述") - private String materialVtext; - - /** 类别 */ - @Excel(name = "类别") - private String materialMatkl; - - /** 类别描述 */ - @Excel(name = "类别描述") - private String materialWgbez; - - /** 单位净重 */ - @Excel(name = "单位净重") - private String materialDwjz; - - /** 厂价 */ - @Excel(name = "厂价") - private String materialChangj; - - /** 型号 */ - private String materialXingh; - - /** 规格 */ - private String materialGuig; - - /** 截面 */ - private String materialJiem; - - /** 电压 */ - private String materialDiany; - - /** 临时字段 */ - private String materialTemp; - - /** 临时字段(IEC型号) */ - private String materialModel; - - /** 标识(100米/卷) */ - @Excel(name = "标识(100米/卷)") - private String materialMrbs; - - /** 是否有效 */ - @Excel(name = "是否有效") - private String materialSfyx; - - public void setMaterialId(Long materialId) - { - this.materialId = materialId; - } - - public Long getMaterialId() - { - return materialId; - } - public void setMaterialMatnr(String materialMatnr) - { - this.materialMatnr = materialMatnr; - } - - public String getMaterialMatnr() - { - return materialMatnr; - } - public void setMaterialMaktx(String materialMaktx) - { - this.materialMaktx = materialMaktx; - } - - public String getMaterialMaktx() - { - return materialMaktx; - } - public void setMaterialVkorg(String materialVkorg) - { - this.materialVkorg = materialVkorg; - } - - public String getMaterialVkorg() - { - return materialVkorg; - } - public void setMaterialVtweg(String materialVtweg) - { - this.materialVtweg = materialVtweg; - } - - public String getMaterialVtweg() - { - return materialVtweg; - } - public void setMaterialMeins(String materialMeins) - { - this.materialMeins = materialMeins; - } - - public String getMaterialMeins() - { - return materialMeins; - } - public void setMaterialSpart(String materialSpart) - { - this.materialSpart = materialSpart; - } - - public String getMaterialSpart() - { - return materialSpart; - } - public void setMaterialVtext(String materialVtext) - { - this.materialVtext = materialVtext; - } - - public String getMaterialVtext() - { - return materialVtext; - } - public void setMaterialMatkl(String materialMatkl) - { - this.materialMatkl = materialMatkl; - } - - public String getMaterialMatkl() - { - return materialMatkl; - } - public void setMaterialWgbez(String materialWgbez) - { - this.materialWgbez = materialWgbez; - } - - public String getMaterialWgbez() - { - return materialWgbez; - } - public void setMaterialDwjz(String materialDwjz) - { - this.materialDwjz = materialDwjz; - } - - public String getMaterialDwjz() - { - return materialDwjz; - } - public void setMaterialChangj(String materialChangj) - { - this.materialChangj = materialChangj; - } - - public String getMaterialChangj() - { - return materialChangj; - } - public void setMaterialXingh(String materialXingh) - { - this.materialXingh = materialXingh; - } - - public String getMaterialXingh() - { - return materialXingh; - } - public void setMaterialGuig(String materialGuig) - { - this.materialGuig = materialGuig; - } - - public String getMaterialGuig() - { - return materialGuig; - } - public void setMaterialJiem(String materialJiem) - { - this.materialJiem = materialJiem; - } - - public String getMaterialJiem() - { - return materialJiem; - } - public void setMaterialDiany(String materialDiany) - { - this.materialDiany = materialDiany; - } - - public String getMaterialDiany() - { - return materialDiany; - } - public void setMaterialTemp(String materialTemp) - { - this.materialTemp = materialTemp; - } - - public String getMaterialTemp() - { - return materialTemp; - } - public void setMaterialModel(String materialModel) - { - this.materialModel = materialModel; - } - - public String getMaterialModel() - { - return materialModel; - } - public void setMaterialMrbs(String materialMrbs) - { - this.materialMrbs = materialMrbs; - } - - public String getMaterialMrbs() - { - return materialMrbs; - } - public void setMaterialSfyx(String materialSfyx) - { - this.materialSfyx = materialSfyx; - } - - public String getMaterialSfyx() - { - return materialSfyx; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("materialId", getMaterialId()) - .append("materialMatnr", getMaterialMatnr()) - .append("materialMaktx", getMaterialMaktx()) - .append("materialVkorg", getMaterialVkorg()) - .append("materialVtweg", getMaterialVtweg()) - .append("materialMeins", getMaterialMeins()) - .append("materialSpart", getMaterialSpart()) - .append("materialVtext", getMaterialVtext()) - .append("materialMatkl", getMaterialMatkl()) - .append("materialWgbez", getMaterialWgbez()) - .append("materialDwjz", getMaterialDwjz()) - .append("materialChangj", getMaterialChangj()) - .append("materialXingh", getMaterialXingh()) - .append("materialGuig", getMaterialGuig()) - .append("materialJiem", getMaterialJiem()) - .append("materialDiany", getMaterialDiany()) - .append("materialTemp", getMaterialTemp()) - .append("materialModel", getMaterialModel()) - .append("materialMrbs", getMaterialMrbs()) - .append("materialSfyx", getMaterialSfyx()) - .toString(); - } -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/mapper/SapMaterialMapper.java b/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/mapper/SapMaterialMapper.java deleted file mode 100644 index b46f19c..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/mapper/SapMaterialMapper.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.sapMaterial.mapper; - -import java.util.List; -import com.ruoyi.sapMaterial.domain.SapMaterial; - -/** - * 物料管理Mapper接口 - * - * @author ruoyi - * @date 2024-03-12 - */ -public interface SapMaterialMapper -{ - /** - * 查询物料管理 - * - * @param materialId 物料管理主键 - * @return 物料管理 - */ - public SapMaterial selectSapMaterialByMaterialId(Long materialId); - - /** - * 查询物料管理列表 - * - * @param sapMaterial 物料管理 - * @return 物料管理集合 - */ - public List selectSapMaterialList(SapMaterial sapMaterial); - - /** - * 新增物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - public int insertSapMaterial(SapMaterial sapMaterial); - - /** - * 修改物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - public int updateSapMaterial(SapMaterial sapMaterial); - - /** - * 删除物料管理 - * - * @param materialId 物料管理主键 - * @return 结果 - */ - public int deleteSapMaterialByMaterialId(Long materialId); - - /** - * 批量删除物料管理 - * - * @param materialIds 需要删除的数据主键集合 - * @return 结果 - */ - public int deleteSapMaterialByMaterialIds(Long[] materialIds); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/ISapMaterialService.java b/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/ISapMaterialService.java deleted file mode 100644 index 6f02494..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/ISapMaterialService.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.sapMaterial.service; - -import java.util.List; -import com.ruoyi.sapMaterial.domain.SapMaterial; - -/** - * 物料管理Service接口 - * - * @author ruoyi - * @date 2024-03-12 - */ -public interface ISapMaterialService -{ - /** - * 查询物料管理 - * - * @param materialId 物料管理主键 - * @return 物料管理 - */ - public SapMaterial selectSapMaterialByMaterialId(Long materialId); - - /** - * 查询物料管理列表 - * - * @param sapMaterial 物料管理 - * @return 物料管理集合 - */ - public List selectSapMaterialList(SapMaterial sapMaterial); - - /** - * 新增物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - public int insertSapMaterial(SapMaterial sapMaterial); - - /** - * 修改物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - public int updateSapMaterial(SapMaterial sapMaterial); - - /** - * 批量删除物料管理 - * - * @param materialIds 需要删除的物料管理主键集合 - * @return 结果 - */ - public int deleteSapMaterialByMaterialIds(Long[] materialIds); - - /** - * 删除物料管理信息 - * - * @param materialId 物料管理主键 - * @return 结果 - */ - public int deleteSapMaterialByMaterialId(Long materialId); -} diff --git a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/impl/SapMaterialServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/impl/SapMaterialServiceImpl.java deleted file mode 100644 index ef3e300..0000000 --- a/ruoyi-system/src/main/java/com/ruoyi/sapMaterial/service/impl/SapMaterialServiceImpl.java +++ /dev/null @@ -1,93 +0,0 @@ -package com.ruoyi.sapMaterial.service.impl; - -import java.util.List; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import com.ruoyi.sapMaterial.mapper.SapMaterialMapper; -import com.ruoyi.sapMaterial.domain.SapMaterial; -import com.ruoyi.sapMaterial.service.ISapMaterialService; - -/** - * 物料管理Service业务层处理 - * - * @author ruoyi - * @date 2024-03-12 - */ -@Service -public class SapMaterialServiceImpl implements ISapMaterialService -{ - @Autowired - private SapMaterialMapper sapMaterialMapper; - - /** - * 查询物料管理 - * - * @param materialId 物料管理主键 - * @return 物料管理 - */ - @Override - public SapMaterial selectSapMaterialByMaterialId(Long materialId) - { - return sapMaterialMapper.selectSapMaterialByMaterialId(materialId); - } - - /** - * 查询物料管理列表 - * - * @param sapMaterial 物料管理 - * @return 物料管理 - */ - @Override - public List selectSapMaterialList(SapMaterial sapMaterial) - { - return sapMaterialMapper.selectSapMaterialList(sapMaterial); - } - - /** - * 新增物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - @Override - public int insertSapMaterial(SapMaterial sapMaterial) - { - return sapMaterialMapper.insertSapMaterial(sapMaterial); - } - - /** - * 修改物料管理 - * - * @param sapMaterial 物料管理 - * @return 结果 - */ - @Override - public int updateSapMaterial(SapMaterial sapMaterial) - { - return sapMaterialMapper.updateSapMaterial(sapMaterial); - } - - /** - * 批量删除物料管理 - * - * @param materialIds 需要删除的物料管理主键 - * @return 结果 - */ - @Override - public int deleteSapMaterialByMaterialIds(Long[] materialIds) - { - return sapMaterialMapper.deleteSapMaterialByMaterialIds(materialIds); - } - - /** - * 删除物料管理信息 - * - * @param materialId 物料管理主键 - * @return 结果 - */ - @Override - public int deleteSapMaterialByMaterialId(Long materialId) - { - return sapMaterialMapper.deleteSapMaterialByMaterialId(materialId); - } -} diff --git a/ruoyi-system/src/main/resources/mapper/sapAccount/SapAccountMapper.xml b/ruoyi-system/src/main/resources/mapper/sapAccount/SapAccountMapper.xml deleted file mode 100644 index 1434f99..0000000 --- a/ruoyi-system/src/main/resources/mapper/sapAccount/SapAccountMapper.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - left join sys_user u on u.user_name = a.user_name - - - - select a.id, a.user_name, case when u.status is null then a.user_name+'(登录账号不存在)' when u.status = '1' then u.nick_name+'(停用)' else u.nick_name end nick_name, a.sap_bm, a.sap_name, a.sap_area - from sap_account a - - - - - - - - - insert into sap_account - - user_name, - sap_bm, - sap_name, - sap_area, - - - #{userName}, - #{sapBm}, - #{sapName}, - #{sapArea}, - - - - - update sap_account - - user_name = #{userName}, - sap_bm = #{sapBm}, - sap_name = #{sapName}, - sap_area = #{sapArea}, - - where id = #{id} - - - - delete from sap_account where id = #{id} - - - - delete from sap_account where id in - - #{id} - - - diff --git a/ruoyi-system/src/main/resources/mapper/sapCustomer/SapCustomerMapper.xml b/ruoyi-system/src/main/resources/mapper/sapCustomer/SapCustomerMapper.xml deleted file mode 100644 index d14e141..0000000 --- a/ruoyi-system/src/main/resources/mapper/sapCustomer/SapCustomerMapper.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - select customer_id, customer_kunnr, customer_name1,customer_name2,customer_name1 + isnull(customer_name2,'') customer_name, customer_state from sap_customer - - - - - - - - insert into sap_customer - - customer_kunnr, - customer_name1, - customer_name2, - customer_state, - - - #{customerKunnr}, - #{customerName1}, - #{customerName2}, - #{customerState}, - - - - - update sap_customer - - customer_kunnr = #{customerKunnr}, - customer_name1 = #{customerName1}, - customer_name2 = #{customerName2}, - customer_state = #{customerState}, - - where customer_id = #{customerId} - - - - delete from sap_customer where customer_id = #{customerId} - - - - delete from sap_customer where customer_id in - - #{customerId} - - - diff --git a/ruoyi-system/src/main/resources/mapper/sapMaterial/SapMaterialMapper.xml b/ruoyi-system/src/main/resources/mapper/sapMaterial/SapMaterialMapper.xml deleted file mode 100644 index f0cd70e..0000000 --- a/ruoyi-system/src/main/resources/mapper/sapMaterial/SapMaterialMapper.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - left join Redbook.RedBook.dbo.sdmdm1 rdm on rdm.matnr='0000000000'+sm.material_matnr - - - - select sm.material_id, sm.material_matnr, sm.material_maktx, sm.material_vkorg, sm.material_vtweg, - sm.material_meins, sm.material_spart, sm.material_vtext, sm.material_matkl, sm.material_wgbez, sm.material_dwjz, - case when rdm.当前厂价=0 then null else rdm.当前厂价 end material_changj, sm.material_xingh, sm.material_guig, - sm.material_jiem, sm.material_diany, sm.material_temp, - sm.material_model, material_mrbs, material_sfyx - from sap_material sm - - - - - - - - - insert into sap_material - - material_matnr, - material_maktx, - material_vkorg, - material_vtweg, - material_meins, - material_spart, - material_vtext, - material_matkl, - material_wgbez, - material_dwjz, - material_changj, - material_xingh, - material_guig, - material_jiem, - material_diany, - material_temp, - material_model, - material_mrbs, - material_sfyx, - - - #{materialMatnr}, - #{materialMaktx}, - #{materialVkorg}, - #{materialVtweg}, - #{materialMeins}, - #{materialSpart}, - #{materialVtext}, - #{materialMatkl}, - #{materialWgbez}, - #{materialDwjz}, - #{materialChangj}, - #{materialXingh}, - #{materialGuig}, - #{materialJiem}, - #{materialDiany}, - #{materialTemp}, - #{materialModel}, - #{materialMrbs}, - #{materialSfyx}, - - - - - update sap_material - - material_matnr = #{materialMatnr}, - material_maktx = #{materialMaktx}, - material_vkorg = #{materialVkorg}, - material_vtweg = #{materialVtweg}, - material_meins = #{materialMeins}, - material_spart = #{materialSpart}, - material_vtext = #{materialVtext}, - material_matkl = #{materialMatkl}, - material_wgbez = #{materialWgbez}, - material_dwjz = #{materialDwjz}, - material_changj = #{materialChangj}, - material_xingh = #{materialXingh}, - material_guig = #{materialGuig}, - material_jiem = #{materialJiem}, - material_diany = #{materialDiany}, - material_temp = #{materialTemp}, - material_model = #{materialModel}, - material_mrbs = #{materialMrbs}, - material_sfyx = #{materialSfyx}, - - where material_id = #{materialId} - - - - delete from sap_material where material_id = #{materialId} - - - - delete from sap_material where material_id in - - #{materialId} - - - diff --git a/ruoyi-ui/src/api/sapAccount/sapAccount.js b/ruoyi-ui/src/api/sapAccount/sapAccount.js deleted file mode 100644 index e38d1f9..0000000 --- a/ruoyi-ui/src/api/sapAccount/sapAccount.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询业务账户列表 -export function listSapAccount(query) { - return request({ - url: '/sapAccount/sapAccount/list', - method: 'get', - params: query - }) -} - -// 查询业务账户详细 -export function getSapAccount(id) { - return request({ - url: '/sapAccount/sapAccount/' + id, - method: 'get' - }) -} - -// 新增业务账户 -export function addSapAccount(data) { - return request({ - url: '/sapAccount/sapAccount', - method: 'post', - data: data - }) -} - -// 修改业务账户 -export function updateSapAccount(data) { - return request({ - url: '/sapAccount/sapAccount', - method: 'put', - data: data - }) -} - -// 删除业务账户 -export function delSapAccount(id) { - return request({ - url: '/sapAccount/sapAccount/' + id, - method: 'delete' - }) -} diff --git a/ruoyi-ui/src/api/sapCustomer/sapCustomer.js b/ruoyi-ui/src/api/sapCustomer/sapCustomer.js deleted file mode 100644 index 9549c76..0000000 --- a/ruoyi-ui/src/api/sapCustomer/sapCustomer.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询客户管理列表 -export function listSapCustomer(query) { - return request({ - url: '/sapCustomer/sapCustomer/list', - method: 'get', - params: query - }) -} - -// 查询客户管理详细 -export function getSapCustomer(customerId) { - return request({ - url: '/sapCustomer/sapCustomer/' + customerId, - method: 'get' - }) -} - -// 新增客户管理 -export function addSapCustomer(data) { - return request({ - url: '/sapCustomer/sapCustomer', - method: 'post', - data: data - }) -} - -// 修改客户管理 -export function updateSapCustomer(data) { - return request({ - url: '/sapCustomer/sapCustomer', - method: 'put', - data: data - }) -} - -// 删除客户管理 -export function delSapCustomer(customerId) { - return request({ - url: '/sapCustomer/sapCustomer/' + customerId, - method: 'delete' - }) -} diff --git a/ruoyi-ui/src/api/sapMaterial/sapMaterial.js b/ruoyi-ui/src/api/sapMaterial/sapMaterial.js deleted file mode 100644 index 182b4bf..0000000 --- a/ruoyi-ui/src/api/sapMaterial/sapMaterial.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询物料管理列表 -export function listSapMaterial(query) { - return request({ - url: '/sapMaterial/sapMaterial/list', - method: 'get', - params: query - }) -} - -// 查询物料管理详细 -export function getSapMaterial(materialId) { - return request({ - url: '/sapMaterial/sapMaterial/' + materialId, - method: 'get' - }) -} - -// 新增物料管理 -export function addSapMaterial(data) { - return request({ - url: '/sapMaterial/sapMaterial', - method: 'post', - data: data - }) -} - -// 修改物料管理 -export function updateSapMaterial(data) { - return request({ - url: '/sapMaterial/sapMaterial', - method: 'put', - data: data - }) -} - -// 删除物料管理 -export function delSapMaterial(materialId) { - return request({ - url: '/sapMaterial/sapMaterial/' + materialId, - method: 'delete' - }) -} diff --git a/ruoyi-ui/src/views/sapAccount/sapAccount/index.vue b/ruoyi-ui/src/views/sapAccount/sapAccount/index.vue deleted file mode 100644 index 94acffb..0000000 --- a/ruoyi-ui/src/views/sapAccount/sapAccount/index.vue +++ /dev/null @@ -1,329 +0,0 @@ - - - diff --git a/ruoyi-ui/src/views/sapCustomer/sapCustomer/index.vue b/ruoyi-ui/src/views/sapCustomer/sapCustomer/index.vue deleted file mode 100644 index f749490..0000000 --- a/ruoyi-ui/src/views/sapCustomer/sapCustomer/index.vue +++ /dev/null @@ -1,304 +0,0 @@ - - - diff --git a/ruoyi-ui/src/views/sapMaterial/sapMaterial/index.vue b/ruoyi-ui/src/views/sapMaterial/sapMaterial/index.vue deleted file mode 100644 index 0e9ee52..0000000 --- a/ruoyi-ui/src/views/sapMaterial/sapMaterial/index.vue +++ /dev/null @@ -1,432 +0,0 @@ - - - diff --git a/sql/ry-vue20240321.bak b/sql/ry-vue20240321.bak new file mode 100644 index 0000000..11ae5bc Binary files /dev/null and b/sql/ry-vue20240321.bak differ