工序dto
parent
ef2378390a
commit
0580d0547d
@ -0,0 +1,17 @@
|
|||||||
|
package com.foreverwin.mesnac.meapi.dto;
|
||||||
|
|
||||||
|
import com.foreverwin.mesnac.meapi.model.Operation;
|
||||||
|
|
||||||
|
public class OperationDto extends Operation {
|
||||||
|
private String type;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setType(String type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue