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.
18 lines
637 B
Java
18 lines
637 B
Java
|
2 months ago
|
package com.tml.projectAttrManagement.dto;
|
||
|
|
|
||
|
|
public class AddRangeRequest {
|
||
|
|
private String attrValue;
|
||
|
|
private String attrRange;
|
||
|
|
private String attrRangeDes;
|
||
|
|
|
||
|
|
// getters and setters
|
||
|
|
public String getAttrValue() { return attrValue; }
|
||
|
|
public void setAttrValue(String attrValue) { this.attrValue = attrValue; }
|
||
|
|
|
||
|
|
public String getAttrRange() { return attrRange; }
|
||
|
|
public void setAttrRange(String attrRange) { this.attrRange = attrRange; }
|
||
|
|
|
||
|
|
public String getAttrRangeDes() { return attrRangeDes; }
|
||
|
|
public void setAttrRangeDes(String attrRangeDes) { this.attrRangeDes = attrRangeDes; }
|
||
|
|
}
|