package com.hz.his.dto.card;
|
|
import com.hz.his.dto.PageDto;
|
import lombok.Data;
|
|
/**
|
* 卡包扩展
|
*
|
* @author fwq
|
*/
|
@Data
|
public class CardBagDto extends PageDto {
|
/**用户标识*/
|
private String userId;
|
/**卡包标识*/
|
private String cardBagId;
|
/**是否不查询取消的卡包:1不查看取消的卡包*/
|
private Integer selectNoCancel;
|
/**卡包有效状态*/
|
private Integer effectiveStatus;
|
/**操作员工标识*/
|
private String opEmployeeId;
|
/**操作门店标识*/
|
private String opShopId;
|
/**开始时间*/
|
private String startTime;
|
/**结束时间*/
|
private String endTime;
|
/**备注*/
|
private String remarks;
|
}
|