1.添加盘点相关业务类
parent
acac5afbc3
commit
16acbbed33
@ -0,0 +1,14 @@
|
|||||||
|
package com.glxp.api.admin.controller.inventory;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单据码表
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class InvCountCodesController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package com.glxp.api.admin.controller.inventory;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单接口
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class InvCountOrderController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package com.glxp.api.admin.controller.inventory;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单详情接口
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class InvCountOrderDetailController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单Service
|
||||||
|
*/
|
||||||
|
public interface InvCountCodesService {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单Service
|
||||||
|
*/
|
||||||
|
public interface InvCountOrderDetailService {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点单Service
|
||||||
|
*/
|
||||||
|
public interface InvCountOrderService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.admin.service.inventory.InvCountCodesService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class InvCountCodesServiceImpl implements InvCountCodesService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.admin.service.inventory.InvCountOrderDetailService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class InvCountOrderDetailServiceImpl implements InvCountOrderDetailService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.admin.service.inventory.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.admin.service.inventory.InvCountOrderService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class InvCountOrderServiceImpl implements InvCountOrderService {
|
||||||
|
}
|
Loading…
Reference in New Issue