package com.gkhy.safePlatform.specialWork.model.query; import java.io.Serializable; public class ApprovalRuleStandPageQuery implements Serializable { private static final long serialVersionUID = -6114138984117049335L; //标准类型 private Byte ruleStandType; //标准标题 private String title; public Byte getRuleStandType() { return ruleStandType; } public void setRuleStandType(Byte ruleStandType) { this.ruleStandType = ruleStandType; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }