package com.gkhy.safePlatform.specialWork.model.query; import java.io.Serializable; public class ApprovalRuleStandListQuery implements Serializable { private static final long serialVersionUID = -1337966430634539660L; //标准类型 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; } }