修改单据insert和update的代码,解决大数据量无法写入的bug,另外增加消息提醒的定时刷新
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class DepotHeadVo4Body {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String info;
|
||||
|
||||
private String inserted;
|
||||
|
||||
private String deleted;
|
||||
|
||||
private String updated;
|
||||
|
||||
private BigDecimal preTotalPrice;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getInfo() {
|
||||
return info;
|
||||
}
|
||||
|
||||
public void setInfo(String info) {
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
public String getInserted() {
|
||||
return inserted;
|
||||
}
|
||||
|
||||
public void setInserted(String inserted) {
|
||||
this.inserted = inserted;
|
||||
}
|
||||
|
||||
public String getDeleted() {
|
||||
return deleted;
|
||||
}
|
||||
|
||||
public void setDeleted(String deleted) {
|
||||
this.deleted = deleted;
|
||||
}
|
||||
|
||||
public String getUpdated() {
|
||||
return updated;
|
||||
}
|
||||
|
||||
public void setUpdated(String updated) {
|
||||
this.updated = updated;
|
||||
}
|
||||
|
||||
public BigDecimal getPreTotalPrice() {
|
||||
return preTotalPrice;
|
||||
}
|
||||
|
||||
public void setPreTotalPrice(BigDecimal preTotalPrice) {
|
||||
this.preTotalPrice = preTotalPrice;
|
||||
}
|
||||
}
|
||||
@@ -20,4 +20,8 @@ public interface MsgMapperEx {
|
||||
int insertSelectiveByTask(Msg record);
|
||||
|
||||
int checkIsNameExistByTask(@Param("msgTitle") String msgTitle);
|
||||
|
||||
Long getMsgCountByStatus(
|
||||
@Param("status") String status,
|
||||
@Param("userId") Long userId);
|
||||
}
|
||||
Reference in New Issue
Block a user