Commit dc5cc557 by zhangchen

1.发券增加请求类

parent beefd4b1
package com.ctrip.fun.common.vo.basic;
import java.io.Serializable;
@SuppressWarnings("rawtypes")
public class VoucherRequestDto implements Serializable{
/**
*
*/
private static final long serialVersionUID = 5973658970911987999L;
private String uid;
private Integer voucherId;
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public Integer getVoucherId() {
return voucherId;
}
public void setVoucherId(Integer voucherId) {
this.voucherId = voucherId;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment