合并代码,bug修复
This commit is contained in:
@@ -166,11 +166,15 @@ public class ZtStoryDTO implements Serializable {
|
||||
*/
|
||||
@ExcelIgnore
|
||||
private String productUserName;
|
||||
@ExcelIgnore
|
||||
private String productUserColor;
|
||||
/**
|
||||
* 产品人
|
||||
*/
|
||||
@ExcelIgnore
|
||||
private String testUser;
|
||||
@ExcelIgnore
|
||||
private String testUserColor;
|
||||
/**
|
||||
* 产品人
|
||||
*/
|
||||
|
||||
@@ -37,11 +37,6 @@ public class ZtProjectQo extends BaseQo {
|
||||
private String severity;
|
||||
|
||||
private String productName;
|
||||
/**
|
||||
* 产品人
|
||||
*/
|
||||
private String productUser;
|
||||
private String testUser;
|
||||
private Integer productId;
|
||||
|
||||
private List<Integer> productIds;
|
||||
|
||||
@@ -121,10 +121,12 @@ public class ZtKanbanlaneServiceImpl extends ServiceImpl<ZtKanbanlaneMapper, ZtK
|
||||
ztUser = userMap.get(st.getProductUser());
|
||||
if(ztUser!=null){
|
||||
st.setProductUserName(ztUser.getNickname());
|
||||
st.setProductUserColor(ztUser.getColor());
|
||||
}
|
||||
ztUser = userMap.get(st.getTestUser());
|
||||
if(ztUser!=null){
|
||||
st.setTestUserName(ztUser.getNickname());
|
||||
st.setTestUserColor(ztUser.getColor());
|
||||
}
|
||||
if(product!=null){
|
||||
st.setProductName(product.getName());
|
||||
|
||||
Reference in New Issue
Block a user