package com.hz.phis.dt.user.card;
|
|
import com.hz.his.dto.PageDto;
|
|
/**
|
* 用户项目扩展
|
* @author fwq
|
* */
|
public class UserCardDt extends PageDto {
|
/**phis用户标识*/
|
private String userId;
|
/**卡项标识*/
|
private String cardItemId;
|
/**子订单编号*/
|
private String orderItemNo;
|
/**有效状态:1有效2无效3已使用4过期无效5已取消*/
|
private Integer effectiveStatus;
|
/**状态:0未使用1已使用2转赠3使用中*/
|
private Integer status;
|
/**有效开始*/
|
private String effectiveStartTime;
|
/**有效结束*/
|
private String effectiveEndTime;
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getCardItemId() {
|
return cardItemId;
|
}
|
|
public void setCardItemId(String cardItemId) {
|
this.cardItemId = cardItemId;
|
}
|
|
public String getOrderItemNo() {
|
return orderItemNo;
|
}
|
|
public void setOrderItemNo(String orderItemNo) {
|
this.orderItemNo = orderItemNo;
|
}
|
|
public Integer getEffectiveStatus() {
|
return effectiveStatus;
|
}
|
|
public void setEffectiveStatus(Integer effectiveStatus) {
|
this.effectiveStatus = effectiveStatus;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getEffectiveStartTime() {
|
return effectiveStartTime;
|
}
|
|
public void setEffectiveStartTime(String effectiveStartTime) {
|
this.effectiveStartTime = effectiveStartTime;
|
}
|
|
public String getEffectiveEndTime() {
|
return effectiveEndTime;
|
}
|
|
public void setEffectiveEndTime(String effectiveEndTime) {
|
this.effectiveEndTime = effectiveEndTime;
|
}
|
}
|