入库字段增补,逻辑修改
This commit is contained in:
@@ -25,6 +25,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/wisdom/stock")
|
||||
public class AppRkInfoController extends BaseController {
|
||||
|
||||
@Autowired
|
||||
private IRkInfoService rkInfoService;
|
||||
|
||||
|
||||
@@ -18,6 +18,9 @@ public class RkInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 模糊搜索关键字(项目号、项目描述、物料号、物料描述、供应商编码、供应商名称,订单编号) */
|
||||
private String keyword;
|
||||
|
||||
/** 主键ID */
|
||||
private Long id;
|
||||
|
||||
@@ -137,6 +140,14 @@ public class RkInfo extends BaseEntity
|
||||
@Excel(name = "是否删除", readConverterExp = "0=,表=示正常,1,表=示已删除")
|
||||
private String isDelete;
|
||||
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
|
||||
public void setKeyword(String keyword) {
|
||||
this.keyword = keyword;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
|
||||
@@ -16,6 +16,9 @@ public class PcRkInfoItemDTO {
|
||||
/** 本地物料号 */
|
||||
private String wlNo;
|
||||
|
||||
/** 本地物料描述 */
|
||||
private String wlMs;
|
||||
|
||||
/** 项目描述 */
|
||||
private String xmMs;
|
||||
|
||||
@@ -96,6 +99,14 @@ public class PcRkInfoItemDTO {
|
||||
this.wlNo = wlNo;
|
||||
}
|
||||
|
||||
public String getWlMs() {
|
||||
return wlMs;
|
||||
}
|
||||
|
||||
public void setWlMs(String wlMs) {
|
||||
this.wlMs = wlMs;
|
||||
}
|
||||
|
||||
public String getXmMs() {
|
||||
return xmMs;
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ public class RkInfoServiceImpl implements IRkInfoService
|
||||
entity.setHtDj(item.getHtDj());
|
||||
entity.setDw(item.getDw());
|
||||
entity.setWlNo(item.getWlNo());
|
||||
// entity.setWlMs(item.getWlMs());
|
||||
entity.setWlMs(item.getWlMs());
|
||||
entity.setGysNo(item.getGysNo());
|
||||
entity.setGysMc(item.getGysMc());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user