修改businessId字段 查看报文
This commit is contained in:
+3
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user