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.
47 lines
1.2 KiB
Java
47 lines
1.2 KiB
Java
2 years ago
|
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 String status;
|
||
|
|
||
|
@TableField(value = "printCodeIdFk")
|
||
|
private String printCodeIdFk;
|
||
|
|
||
|
@TableField(value = "stockOrderFk")
|
||
|
private String stockOrderFk;
|
||
|
|
||
|
public static final String COL_ID = "id";
|
||
|
|
||
|
public static final String COL_GENKEY = "genkey";
|
||
|
|
||
|
public static final String COL_FILENAME = "fileName";
|
||
|
|
||
|
public static final String COL_FILEPATH = "filePath";
|
||
|
|
||
|
public static final String COL_STATUS = "status";
|
||
|
|
||
|
public static final String COL_PRINTCODEIDFK = "printCodeIdFk";
|
||
|
|
||
|
public static final String COL_STOCKORDERFK = "stockOrderFk";
|
||
|
}
|