You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
832 B
Java
38 lines
832 B
Java
package com.glxp.api.vo.system;
|
|
|
|
import com.glxp.api.entity.system.SysMsgTodoEntity;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class SysMsgTodoVo extends SysMsgTodoEntity {
|
|
|
|
String msgTypeName;
|
|
String pushStatusName;
|
|
String dealStatusName;
|
|
|
|
String invName;
|
|
|
|
String deptName;
|
|
|
|
public String getMsgTypeName() {
|
|
if (super.getMsgType() != null) {
|
|
return super.getMsgType().getDesc();
|
|
}
|
|
return msgTypeName;
|
|
}
|
|
|
|
public String getPushStatusName() {
|
|
if (super.getPushStatus() != null) {
|
|
return super.getPushStatus().getDesc();
|
|
}
|
|
return pushStatusName;
|
|
}
|
|
|
|
public String getDealStatusName() {
|
|
if (super.getDealStatus() != null) {
|
|
return super.getDealStatus().getDesc();
|
|
}
|
|
return dealStatusName;
|
|
}
|
|
}
|