md
This commit is contained in:
parent
191cb4dd04
commit
63f6419929
@ -11,6 +11,8 @@
|
||||
package com.xdadan.erp.emis.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.xdadan.erp.emis.service.EmisBaseService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.xdadan.erp.emis.domain.EmisQuoteDispArea;
|
||||
@ -24,7 +26,7 @@ import com.xdadan.erp.emis.service.IEmisQuoteDispAreaService;
|
||||
* @date 2024-01-12 08:40:04
|
||||
*/
|
||||
@Service
|
||||
public class EmisQuoteDispAreaServiceImpl implements IEmisQuoteDispAreaService
|
||||
public class EmisQuoteDispAreaServiceImpl extends EmisBaseService implements IEmisQuoteDispAreaService
|
||||
{
|
||||
@Autowired
|
||||
private EmisQuoteDispAreaMapper emisQuoteDispAreaMapper;
|
||||
@ -50,6 +52,7 @@ public class EmisQuoteDispAreaServiceImpl implements IEmisQuoteDispAreaService
|
||||
@Override
|
||||
public List<EmisQuoteDispArea> selectEmisQuoteDispAreaList(EmisQuoteDispArea emisQuoteDispArea)
|
||||
{
|
||||
emisQuoteDispArea.setCreateSite(getCurrentUser().getOwnerSiteCode());
|
||||
return emisQuoteDispAreaMapper.selectEmisQuoteDispAreaList(emisQuoteDispArea);
|
||||
}
|
||||
|
||||
|
||||
@ -11,6 +11,8 @@
|
||||
package com.xdadan.erp.emis.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.xdadan.erp.emis.service.EmisBaseService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.xdadan.erp.emis.domain.EmisQuoteSendArea;
|
||||
@ -24,7 +26,7 @@ import com.xdadan.erp.emis.service.IEmisQuoteSendAreaService;
|
||||
* @date 2024-01-12 08:40:05
|
||||
*/
|
||||
@Service
|
||||
public class EmisQuoteSendAreaServiceImpl implements IEmisQuoteSendAreaService
|
||||
public class EmisQuoteSendAreaServiceImpl extends EmisBaseService implements IEmisQuoteSendAreaService
|
||||
{
|
||||
@Autowired
|
||||
private EmisQuoteSendAreaMapper emisQuoteSendAreaMapper;
|
||||
@ -50,6 +52,7 @@ public class EmisQuoteSendAreaServiceImpl implements IEmisQuoteSendAreaService
|
||||
@Override
|
||||
public List<EmisQuoteSendArea> selectEmisQuoteSendAreaList(EmisQuoteSendArea emisQuoteSendArea)
|
||||
{
|
||||
emisQuoteSendArea.setCreateSite(getCurrentUser().getOwnerSiteCode());
|
||||
return emisQuoteSendAreaMapper.selectEmisQuoteSendAreaList(emisQuoteSendArea);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user