| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- package com.dk.mdm.model.query.ivt;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import com.alibaba.fastjson.JSONObject;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.dk.common.infrastructure.annotaiton.ExportTitle;
- import com.dk.common.infrastructure.handler.JsonTypeHandler;
- import com.dk.common.infrastructure.handler.TimestampTypeHandler;
- import com.dk.common.infrastructure.handler.UuidTypeHandler;
- import com.dk.common.model.pojo.PageInfo;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.time.LocalDate;
- import java.time.LocalDateTime;
- import java.util.List;
- /**
- * 出库单
- */
- @Data
- @AllArgsConstructor
- @NoArgsConstructor
- @EqualsAndHashCode(callSuper = true)
- @Accessors(chain = true)
- @ExportTitle("出库单")
- @TableName(value = "t_psi_outbound", autoResultMap = true)
- @ApiModel(value="实体类:出库单", description="表名:t_psi_outbound")
- public class OutboundQuery extends PageInfo<OutboundQuery> implements Serializable {
- /*
- * 数据库字段
- */
- /**
- * 出库单ID
- */
- // @TableId(value = "out_id", type = IdType.AUTO)
- @ApiModelProperty(value = "出库单ID")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String outId;
- /**
- * 出库单号
- */
- @Excel(name = "出库单号")
- @ApiModelProperty(value = "出库单号")
- private String outNo;
- /**
- * 出库类型 (【系统字典】销售出库、采退出库、其他出库)
- */
- @Excel(name = "出库类型 (【系统字典】销售出库、采退出库、其他出库)")
- @ApiModelProperty(value = "出库类型 (【系统字典】销售出库、采退出库、其他出库)")
- private String outType;
- /**
- * 来源单ID (销售订单、入库退货)
- */
- @Excel(name = "来源单ID (销售订单、入库退货)")
- @ApiModelProperty(value = "来源单ID (销售订单、入库退货)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String fromId;
- /**
- * 来源单号
- */
- @Excel(name = "来源单号")
- @ApiModelProperty(value = "来源单号")
- private String fromNo;
- /**
- * 部门
- */
- @Excel(name = "部门")
- @ApiModelProperty(value = "部门")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String orgId;
- /**
- * 员工
- */
- @Excel(name = "员工")
- @ApiModelProperty(value = "员工")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String staffId;
- /**
- * 客户
- */
- @Excel(name = "客户")
- @ApiModelProperty(value = "客户")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String cusId;
- /**
- * 供应商
- */
- @Excel(name = "供应商")
- @ApiModelProperty(value = "供应商")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String supId;
- /**
- * 出库状态 (【系统字典】)
- */
- @Excel(name = "出库状态 (【系统字典】)")
- @ApiModelProperty(value = "出库状态 (【系统字典】)")
- private String outStatus;
- /**
- * 出库中数量
- */
- @Excel(name = "出库中数量")
- @ApiModelProperty(value = "出库中数量")
- private BigDecimal outingQty;
- /**
- * 出库中金额
- */
- @Excel(name = "出库中金额")
- @ApiModelProperty(value = "出库中金额")
- private BigDecimal outingAmt;
- /**
- * 已出库数量
- */
- @Excel(name = "已出库数量")
- @ApiModelProperty(value = "已出库数量")
- private BigDecimal outQty;
- /**
- * 已出库金额
- */
- @Excel(name = "已出库金额")
- @ApiModelProperty(value = "已出库金额")
- private BigDecimal outAmt;
- /**
- * 已出库退货数量
- */
- @Excel(name = "已出库退货数量")
- @ApiModelProperty(value = "已出库退货数量")
- private BigDecimal returnQty;
- /**
- * 已出库退货金额
- */
- @Excel(name = "已出库退货金额")
- @ApiModelProperty(value = "已出库退货金额")
- private BigDecimal returnAmt;
- /**
- * 出库日期
- */
- @Excel(name = "出库日期")
- @ApiModelProperty(value = "出库日期")
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDate outDate;
- /**
- * 备注
- */
- @Excel(name = "备注")
- @ApiModelProperty(value = "备注")
- private String remarks;
- /**
- * 附件 (index(显示顺序)、name(文件名)、path(路径)、type(类型)、time(上传时间)...)
- */
- @Excel(name = "附件 (index(显示顺序)、name(文件名)、path(路径)、type(类型)、time(上传时间)...)")
- @ApiModelProperty(value = "附件 (index(显示顺序)、name(文件名)、path(路径)、type(类型)、time(上传时间)...)")
- @TableField(typeHandler = JsonTypeHandler.class)
- private JSONObject annexPaths;
- /**
- * 制单员
- */
- @Excel(name = "制单员")
- @ApiModelProperty(value = "制单员")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String makeStaff;
- /**
- * 制单时间
- */
- @Excel(name = "制单时间")
- @ApiModelProperty(value = "制单时间")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime makeTime;
- /**
- * 应收款单
- */
- @Excel(name = "应收款单")
- @ApiModelProperty(value = "应收款单")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String receivableId;
- /**
- * 应付款单
- */
- @Excel(name = "应付款单")
- @ApiModelProperty(value = "应付款单")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String payableId;
- /**
- * 有效标识 (1:正常 0:停用)
- */
- @Excel(name = "有效标识 (1:正常 0:停用)")
- @ApiModelProperty(value = "有效标识 (1:正常 0:停用)")
- private Boolean flgValid;
- /**
- * 企业ID
- */
- @Excel(name = "企业ID")
- @ApiModelProperty(value = "企业ID")
- private Integer cpId;
- /**
- * 创建时间 (触发器自动处理)
- */
- @Excel(name = "创建时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
- @ApiModelProperty(value = "创建时间 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opCreateTime;
- /**
- * 创建用户 (触发器自动处理)
- */
- @Excel(name = "创建用户 (触发器自动处理)")
- @ApiModelProperty(value = "创建用户 (触发器自动处理)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String opCreateUserId;
- /**
- * 修改时间 (触发器自动处理)
- */
- @Excel(name = "修改时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
- @ApiModelProperty(value = "修改时间 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opUpdateTime;
- /**
- * 修改用户 (触发器自动处理)
- */
- @Excel(name = "修改用户 (触发器自动处理)")
- @ApiModelProperty(value = "修改用户 (触发器自动处理)")
- @TableField(typeHandler = UuidTypeHandler.class)
- private String opUpdateUserId;
- /**
- * 数据操作应用 (触发器自动处理)
- */
- @Excel(name = "数据操作应用 (触发器自动处理)")
- @ApiModelProperty(value = "数据操作应用 (触发器自动处理)")
- private String opAppCode;
- /**
- * 数据时间戳 (触发器自动处理)
- */
- @Excel(name = "数据时间戳 (触发器自动处理)")
- @ApiModelProperty(value = "数据时间戳 (触发器自动处理)")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- @TableField(typeHandler = TimestampTypeHandler.class)
- private LocalDateTime opTimestamp;
- /**
- * 数据操作数据库用户 (触发器自动处理)
- */
- @Excel(name = "数据操作数据库用户 (触发器自动处理)")
- @ApiModelProperty(value = "数据操作数据库用户 (触发器自动处理)")
- private String opDbUser;
- @ApiModelProperty(value = "订单单号")
- private String orderNo;
- @ApiModelProperty(value = "客户电话")
- private String cusPhone;
- @ApiModelProperty(value = "客户名称")
- private String cusName;
- @ApiModelProperty(value = "部门List")
- private List<String> orgIdList;
- @ApiModelProperty(value = "业务员List")
- private List<String> staffIdList;
- @ApiModelProperty(value = "出库状态List")
- private List<String> outStatusList;
- @ApiModelProperty(value = "制单时间开始")
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate makeTimeStart;
- @ApiModelProperty(value = "制单时间结束")
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate makeTimeEnd;
- @ApiModelProperty(value = "出库日期开始")
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate outDateStart;
- @ApiModelProperty(value = "出库日期结束")
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private LocalDate outDateEnd;
- @TableField(exist = false)
- @ApiModelProperty(value = "有效标识 (1:正常 0:停用)")
- private List<Boolean> flgValidList;
- /*
- * 相关属性
- * @TableField(exist = false)
- */
- /*
- * 关联属性 + 查询条件
- * @TableField(exist = false)
- */
- private static final long serialVersionUID = 1L;
- }
|