| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.example.subject.center.entity;
- public class PatternParam {
- private Object type;
- private String data;
- private Object target;
- public PatternParam(Object type, String data, Object target) {
- this.type = type;
- this.data = data;
- this.target = target;
- }
- public Object getType() {
- return type;
- }
- public void setType(Object type) {
- this.type = type;
- }
- public String getData() {
- return data;
- }
- public void setData(String data) {
- this.data = data;
- }
- public Object getTarget() {
- return target;
- }
- public void setTarget(Object target) {
- this.target = target;
- }
- }
|