This commit is contained in:
苏竹红
2023-06-26 20:00:19 +08:00
parent 25aab92b76
commit 29c6e89970
3 changed files with 5 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ public class HyPartnerLineInfoDAO {
return hyPartnerLineInfoMapper.joinAndRemoveBlack(lineId,status,joinReason,removeReason);
}
public List<PublicSeaLineDTO> getPublicSeaLineList( String userNameKeyword, String phoneKeyword, String intentArea, Integer acceptAdjustType, Date updateStartTime, Date updateEndTime, List<String> userIdList){
public List<PublicSeaLineDTO> getPublicSeaLineList( String userNameKeyword, String phoneKeyword, String intentArea, Integer acceptAdjustType, String updateStartTime, String updateEndTime, List<String> userIdList){
return hyPartnerLineInfoMapper.getPublicSeaLineList(userNameKeyword,phoneKeyword,intentArea,acceptAdjustType,updateStartTime,updateEndTime,userIdList);
}

View File

@@ -154,8 +154,8 @@ public interface HyPartnerLineInfoMapper {
@Param("phoneKeyword") String phoneKeyword,
@Param("intentArea") String intentArea,
@Param("acceptAdjustType") Integer acceptAdjustType,
@Param("updateStartTime") Date updateStartTime,
@Param("updateEndTime") Date updateEndTime,
@Param("updateStartTime") String updateStartTime,
@Param("updateEndTime") String updateEndTime,
@Param("userIdList") List<String> userIdList);

View File

@@ -30,10 +30,10 @@ public class LineRequest extends PageInfoRequest{
private Integer acceptAdjustType;
@ApiModelProperty("更新开始时间")
private Date updateStartTime;
private String updateStartTime;
@ApiModelProperty("更新结束时间")
private Date updateEndTime;
private String updateEndTime;