package com.dy.pipIrrSell.general.qo; 
 | 
  
 | 
import com.dy.common.webUtil.QueryConditionVo; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.*; 
 | 
  
 | 
/** 
 | 
 * @author ZhuBaoMin 
 | 
 * @date 2024-01-24 20:25 
 | 
 * @LastEditTime 2024-01-24 20:25 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
@Data 
 | 
@EqualsAndHashCode(callSuper = false) 
 | 
@ToString(callSuper = true) 
 | 
@NoArgsConstructor 
 | 
@AllArgsConstructor 
 | 
@Builder 
 | 
@Schema(name = "总账查询条件") 
 | 
public class QoGeneral extends QueryConditionVo { 
 | 
    @Schema(description = "收银员姓名") 
 | 
    public String cashierName; 
 | 
  
 | 
    @Schema(description = "交易查询起始日期") 
 | 
    public String operateDateStart; 
 | 
  
 | 
    @Schema(description = "交易查询截止日期") 
 | 
    public String operateDateStop; 
 | 
  
 | 
    @Schema(description = "审核状态") 
 | 
    private Byte auditStatus; 
 | 
  
 | 
} 
 |