提交 a2a6741e authored 作者: zhoushaopan's avatar zhoushaopan

feat(列装模块): 解决了描述字符长度

解决了描述字符长度
上级 d9816dcc
......@@ -825,7 +825,7 @@ public class AllotBillController {
.map(User::getUserId)
.collect(Collectors.toList()));
// String content = allotBill.getReceiveUnit()+"单位的配发业务已办结";
String content = "办结配发业务";
String content = "办结 配发业务";
// MessageBto messageBto = new MessageBto(taskBto.getParentTaskId(), taskBto.getBusinessType(), "业务办结", userIds, 1);
List<ScriptSaveVo> scriptSaveVos = JacksonUtil.readValue(allotBill.getScriptJson(), new TypeReference<List<ScriptSaveVo>>() {});
......
......@@ -49,6 +49,7 @@ public class PackingLog {
* 操作描述
*/
@ApiModelProperty(value = "操作描述")
@Lob
private String remark;
/**
* 创建用户id
......
......@@ -9,6 +9,7 @@ import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Repository;
import javax.persistence.Lob;
import javax.validation.constraints.NotNull;
import java.util.List;
......@@ -88,6 +89,10 @@ public class AddPack {
@ApiModelProperty(value = "父级ID", example = "1")
private Integer partParentId;
@ApiModelProperty(value = "列装描述")
@Lob
private String description;
public PackingLibrary toDo() {
PackingLibrary packingLibraryEntity = new PackingLibrary();
BeanUtils.copyProperties(this, packingLibraryEntity);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论