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.
36 lines
847 B
Java
36 lines
847 B
Java
package com.glxp.api.entity.inv;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "inv_inner_order_pdf_temp")
|
|
public class InvInnerOrderPdfTempEntity {
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@TableField(value = "genkey")
|
|
private String genkey;
|
|
|
|
@TableField(value = "fileName")
|
|
private String fileName;
|
|
|
|
@TableField(value = "filePath")
|
|
private String filePath;
|
|
|
|
@TableField(value = "`status`")
|
|
private Integer status;
|
|
|
|
@TableField(value = "printCodeIdFk")
|
|
private String printCodeIdFk;
|
|
|
|
@TableField(value = "stockOrderFk")
|
|
private String stockOrderFk;
|
|
|
|
|
|
}
|