修改businessId字段 查看报文

This commit is contained in:
zhaoqing
2026-05-14 11:11:03 +08:00
parent 3867226d3f
commit 43c64779ce
9 changed files with 33 additions and 24 deletions
@@ -38,6 +38,9 @@ public class ErpEnterpriseUnit {
@ApiModelProperty(value = "推送人")
private String pushBy;
@ApiModelProperty(value = "推送人姓名")
private String pushByName;
@ApiModelProperty(value = "所属组织ID")
private Long organizationId;
@@ -26,7 +26,7 @@ public class GwLog implements Serializable {
private String type;
@ApiModelProperty("业务ID")
private String businessId;
private Long businessId;
@ApiModelProperty("请求报文")
private String requestBody;
@@ -21,6 +21,6 @@ public interface GwLogMapper extends BaseMapper<GwLog> {
*/
List<GwLogPO> queryList(GwLogDTO gwLogDTO);
@Select("select * from gw_log where business_id = #{businessId} and type = #{type}")
GwLogPO selectByTypeAndId(@RequestBody GwLog gwLog);
@Select("select * from gw_log where business_id = #{businessId} and type = #{type} order by create_time desc")
List<GwLogPO> selectByTypeAndId(@RequestBody GwLog gwLog);
}