package com.matrix.system.common.bean.reqVO;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class OperationLogReqVo {
|
|
/**
|
*公司id
|
*/
|
private Long companyId;
|
|
/**
|
*门店id
|
*/
|
private Long shopId;
|
|
/**
|
*操作用户id
|
*/
|
private Long opeUserId;
|
|
/**
|
* 会员id
|
*/
|
private String vipQueryKey;
|
|
/**
|
* 操作功能
|
*/
|
private Integer opeFunction;
|
|
/**
|
* 单据按钮
|
*/
|
private Integer opeBut;
|
|
/**
|
* 单据号
|
*/
|
private String billNo;
|
|
/**
|
* 操作人ip
|
*/
|
private String ip;
|
|
/**
|
* 操作备注
|
*/
|
private String note;
|
|
/**
|
* 操作时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm", timezone="GMT+8")
|
private Date startTime;
|
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm", timezone="GMT+8")
|
private Date endTime;
|
|
private Integer pageNum = 0;
|
|
private Integer pageSize = 20;
|
|
private String order = "desc";
|
|
/**
|
* 排序-根据哪些字段排序 默认'create_time
|
*/
|
private String sort = "create_time";
|
|
|
}
|