You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/req/basic/YbNotCodeQuery.java

32 lines
831 B
Java

package com.glxp.api.req.basic;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
@Data
public class YbNotCodeQuery extends ListPageRequest {
/**
*
*/
@TableId(value = "ybbm", type = IdType.INPUT)
private String ybbm;
/**
*
*/
@TableField(value = "organizationCode")
private String organizationCode;
/**
* 1 5 6 7 0
*/
@TableField(value = "notCodeType")
private Integer notCodeType;
private Integer excelType;
}