fix:地磅重量信息接口,后端接收类型修改
This commit is contained in:
parent
3aa4cb77f5
commit
11bd4172d6
@ -17,7 +17,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 地磅重量信息接口Controller
|
* 地磅重量信息接口Controller
|
||||||
*
|
*
|
||||||
* @author liweijie
|
* @author liweijie
|
||||||
* @date 2023-12-06
|
* @date 2023-12-06
|
||||||
*/
|
*/
|
||||||
@ -58,7 +58,7 @@ public class WmsScalesWeightInfoController extends BaseController
|
|||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('scalesWeightInfo:wmsScalesWeightInfo:query')")
|
@PreAuthorize("@ss.hasPermi('scalesWeightInfo:wmsScalesWeightInfo:query')")
|
||||||
@GetMapping(value = "/{id}")
|
@GetMapping(value = "/{id}")
|
||||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
public AjaxResult getInfo(@PathVariable("id") String id)
|
||||||
{
|
{
|
||||||
return success(wmsScalesWeightInfoService.selectWmsScalesWeightInfoById(id));
|
return success(wmsScalesWeightInfoService.selectWmsScalesWeightInfoById(id));
|
||||||
}
|
}
|
||||||
|
@ -6,23 +6,23 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 地磅重量信息接口Mapper接口
|
* 地磅重量信息接口Mapper接口
|
||||||
*
|
*
|
||||||
* @author liweijie
|
* @author liweijie
|
||||||
* @date 2023-12-06
|
* @date 2023-12-06
|
||||||
*/
|
*/
|
||||||
public interface WmsScalesWeightInfoMapper
|
public interface WmsScalesWeightInfoMapper
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口
|
* 查询地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 地磅重量信息接口
|
* @return 地磅重量信息接口
|
||||||
*/
|
*/
|
||||||
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(Long id);
|
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口列表
|
* 查询地磅重量信息接口列表
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 地磅重量信息接口集合
|
* @return 地磅重量信息接口集合
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ public interface WmsScalesWeightInfoMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增地磅重量信息接口
|
* 新增地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -38,7 +38,7 @@ public interface WmsScalesWeightInfoMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改地磅重量信息接口
|
* 修改地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -46,7 +46,7 @@ public interface WmsScalesWeightInfoMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除地磅重量信息接口
|
* 删除地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -54,7 +54,7 @@ public interface WmsScalesWeightInfoMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除地磅重量信息接口
|
* 批量删除地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param ids 需要删除的数据主键集合
|
* @param ids 需要删除的数据主键集合
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
|
@ -6,23 +6,23 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 地磅重量信息接口Service接口
|
* 地磅重量信息接口Service接口
|
||||||
*
|
*
|
||||||
* @author liweijie
|
* @author liweijie
|
||||||
* @date 2023-12-06
|
* @date 2023-12-06
|
||||||
*/
|
*/
|
||||||
public interface IWmsScalesWeightInfoService
|
public interface IWmsScalesWeightInfoService
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口
|
* 查询地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 地磅重量信息接口
|
* @return 地磅重量信息接口
|
||||||
*/
|
*/
|
||||||
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(Long id);
|
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口列表
|
* 查询地磅重量信息接口列表
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 地磅重量信息接口集合
|
* @return 地磅重量信息接口集合
|
||||||
*/
|
*/
|
||||||
@ -30,7 +30,7 @@ public interface IWmsScalesWeightInfoService
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增地磅重量信息接口
|
* 新增地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -38,7 +38,7 @@ public interface IWmsScalesWeightInfoService
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改地磅重量信息接口
|
* 修改地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -46,7 +46,7 @@ public interface IWmsScalesWeightInfoService
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除地磅重量信息接口
|
* 批量删除地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param ids 需要删除的地磅重量信息接口主键集合
|
* @param ids 需要删除的地磅重量信息接口主键集合
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -54,7 +54,7 @@ public interface IWmsScalesWeightInfoService
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除地磅重量信息接口信息
|
* 删除地磅重量信息接口信息
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 地磅重量信息接口Service业务层处理
|
* 地磅重量信息接口Service业务层处理
|
||||||
*
|
*
|
||||||
* @author liweijie
|
* @author liweijie
|
||||||
* @date 2023-12-06
|
* @date 2023-12-06
|
||||||
*/
|
*/
|
||||||
@ -23,19 +23,19 @@ public class WmsScalesWeightInfoServiceImpl implements IWmsScalesWeightInfoServi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口
|
* 查询地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 地磅重量信息接口
|
* @return 地磅重量信息接口
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(Long id)
|
public WmsScalesWeightInfo selectWmsScalesWeightInfoById(String id)
|
||||||
{
|
{
|
||||||
return wmsScalesWeightInfoMapper.selectWmsScalesWeightInfoById(id);
|
return wmsScalesWeightInfoMapper.selectWmsScalesWeightInfoById(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询地磅重量信息接口列表
|
* 查询地磅重量信息接口列表
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 地磅重量信息接口
|
* @return 地磅重量信息接口
|
||||||
*/
|
*/
|
||||||
@ -47,7 +47,7 @@ public class WmsScalesWeightInfoServiceImpl implements IWmsScalesWeightInfoServi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增地磅重量信息接口
|
* 新增地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -60,7 +60,7 @@ public class WmsScalesWeightInfoServiceImpl implements IWmsScalesWeightInfoServi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改地磅重量信息接口
|
* 修改地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param wmsScalesWeightInfo 地磅重量信息接口
|
* @param wmsScalesWeightInfo 地磅重量信息接口
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -72,7 +72,7 @@ public class WmsScalesWeightInfoServiceImpl implements IWmsScalesWeightInfoServi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除地磅重量信息接口
|
* 批量删除地磅重量信息接口
|
||||||
*
|
*
|
||||||
* @param ids 需要删除的地磅重量信息接口主键
|
* @param ids 需要删除的地磅重量信息接口主键
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@ -84,7 +84,7 @@ public class WmsScalesWeightInfoServiceImpl implements IWmsScalesWeightInfoServi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除地磅重量信息接口信息
|
* 删除地磅重量信息接口信息
|
||||||
*
|
*
|
||||||
* @param id 地磅重量信息接口主键
|
* @param id 地磅重量信息接口主键
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectWmsScalesWeightInfoById" parameterType="Long" resultMap="WmsScalesWeightInfoResult">
|
<select id="selectWmsScalesWeightInfoById" parameterType="String" resultMap="WmsScalesWeightInfoResult">
|
||||||
<include refid="selectWmsScalesWeightInfoVo"/>
|
<include refid="selectWmsScalesWeightInfoVo"/>
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</select>
|
</select>
|
||||||
@ -85,4 +85,4 @@
|
|||||||
#{id}
|
#{id}
|
||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
Loading…
Reference in New Issue
Block a user