Your Name
2023-03-08 af24b40f3bc017fb30f1cf32fda0b32aca3fe19f
java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java
@@ -1,6 +1,8 @@
package com.java110.dto.itemReleaseType;
import com.java110.dto.PageDto;
import com.java110.dto.oaWorkflow.OaWorkflowDto;
import java.io.Serializable;
import java.util.Date;
@@ -12,14 +14,14 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class ItemReleaseTypeDto extends PageDto implements Serializable {
public class ItemReleaseTypeDto extends OaWorkflowDto implements Serializable {
    private String typeName;
private String typeId;
private String remark;
private String communityId;
private String flowId;
private String flowName;
    private String typeId;
    private String remark;
    private String communityId;
    private String flowId;
    private String flowName;
    private Date createTime;
@@ -30,37 +32,48 @@
    public String getTypeName() {
        return typeName;
    }
public void setTypeName(String typeName) {
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
public String getTypeId() {
    public String getTypeId() {
        return typeId;
    }
public void setTypeId(String typeId) {
    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }
public String getRemark() {
    public String getRemark() {
        return remark;
    }
public void setRemark(String remark) {
    public void setRemark(String remark) {
        this.remark = remark;
    }
public String getCommunityId() {
    public String getCommunityId() {
        return communityId;
    }
public void setCommunityId(String communityId) {
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
public String getFlowId() {
    public String getFlowId() {
        return flowId;
    }
public void setFlowId(String flowId) {
    public void setFlowId(String flowId) {
        this.flowId = flowId;
    }
public String getFlowName() {
    public String getFlowName() {
        return flowName;
    }
public void setFlowName(String flowName) {
    public void setFlowName(String flowName) {
        this.flowName = flowName;
    }