From f88afd8001a18a4e16d47e301f7c948a05bae85b Mon Sep 17 00:00:00 2001 From: x_z Date: Fri, 3 Feb 2023 14:08:15 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=B7=BB=E5=8A=A0=E8=80=97=E6=9D=90=E5=AD=97?= =?UTF-8?q?=E5=85=B8=E5=AF=BC=E5=85=A5=E5=AF=BC=E5=87=BA=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/BasicProductsExportLogEntity.java | 95 +++++++++++++++ .../BasicProductsImportDetailEntity.java | 115 ++++++++++++++++++ .../basic/BasicProductsImportLogEntity.java | 80 ++++++++++++ 3 files changed, 290 insertions(+) create mode 100644 src/main/java/com/glxp/api/entity/basic/BasicProductsExportLogEntity.java create mode 100644 src/main/java/com/glxp/api/entity/basic/BasicProductsImportDetailEntity.java create mode 100644 src/main/java/com/glxp/api/entity/basic/BasicProductsImportLogEntity.java diff --git a/src/main/java/com/glxp/api/entity/basic/BasicProductsExportLogEntity.java b/src/main/java/com/glxp/api/entity/basic/BasicProductsExportLogEntity.java new file mode 100644 index 00000000..758ea8ae --- /dev/null +++ b/src/main/java/com/glxp/api/entity/basic/BasicProductsExportLogEntity.java @@ -0,0 +1,95 @@ +package com.glxp.api.entity.basic; + +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; + +import java.util.Date; + +@Data +@TableName(value = "basic_products_export_log") +public class BasicProductsExportLogEntity { + @TableId(value = "id", type = IdType.INPUT) + private Integer id; + + /** + * 生成日志记录 + */ + @TableField(value = "genKey") + private String genKey; + + /** + * 生成状态0:失败;1:成功 + */ + @TableField(value = "`status`") + private Integer status; + + /** + * 下载次数 + */ + @TableField(value = "dlCount") + private Integer dlCount; + + /** + * 文件下载路径 + */ + @TableField(value = "filePath") + private String filePath; + + @TableField(value = "`type`") + private Integer type; + + /** + * 创建人 + */ + @TableField(value = "`createUser`") + private String createUser; + + /** + * 创建时间 + */ + @TableField(value = "createTime") + private Date createTime; + + /** + * 更新人 + */ + @TableField(value = "updateUser") + private String updateUser; + + /** + * 更新时间 + */ + @TableField(value = "updateTime") + private Date updateTime; + + /** + * 备注 + */ + @TableField(value = "remark") + private String remark; + + public static final String COL_ID = "id"; + + public static final String COL_GENKEY = "genKey"; + + public static final String COL_STATUS = "status"; + + public static final String COL_DLCOUNT = "dlCount"; + + public static final String COL_FILEPATH = "filePath"; + + public static final String COL_TYPE = "type"; + + public static final String COL_CREATEUSER = "createUser"; + + public static final String COL_CREATETIME = "createTime"; + + public static final String COL_UPDATEUSER = "updateUser"; + + public static final String COL_UPDATETIME = "updateTime"; + + public static final String COL_REMARK = "remark"; +} \ No newline at end of file diff --git a/src/main/java/com/glxp/api/entity/basic/BasicProductsImportDetailEntity.java b/src/main/java/com/glxp/api/entity/basic/BasicProductsImportDetailEntity.java new file mode 100644 index 00000000..51d9ebd1 --- /dev/null +++ b/src/main/java/com/glxp/api/entity/basic/BasicProductsImportDetailEntity.java @@ -0,0 +1,115 @@ +package com.glxp.api.entity.basic; + +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 java.util.Date; +import lombok.Data; + +@Data +@TableName(value = "basic_products_import_detail") +public class BasicProductsImportDetailEntity { + @TableId(value = "id", type = IdType.INPUT) + private Integer id; + + @TableField(value = "udiCode") + private String udiCode; + + @TableField(value = "ybbm") + private String ybbm; + + @TableField(value = "sptm") + private String sptm; + + @TableField(value = "thirdId1") + private String thirdId1; + + @TableField(value = "thirdId2") + private String thirdId2; + + @TableField(value = "thirdId3") + private String thirdId3; + + @TableField(value = "thirdId4") + private String thirdId4; + + @TableField(value = "thirdId") + private String thirdId; + + /** + * 0:等待处理,1.处理失败。2。处理成功 + */ + @TableField(value = "`status`") + private Integer status; + + @TableField(value = "genKeyFk") + private String genKeyFk; + + @TableField(value = "isUseDy") + private String isUseDy; + + /** + * 创建人 + */ + @TableField(value = "`createUser`") + private String createUser; + + /** + * 创建时间 + */ + @TableField(value = "createTime") + private Date createTime; + + /** + * 更新人 + */ + @TableField(value = "updateUser") + private String updateUser; + + /** + * 更新时间 + */ + @TableField(value = "updateTime") + private Date updateTime; + + /** + * 备注 + */ + @TableField(value = "remark") + private String remark; + + public static final String COL_ID = "id"; + + public static final String COL_UDICODE = "udiCode"; + + public static final String COL_YBBM = "ybbm"; + + public static final String COL_SPTM = "sptm"; + + public static final String COL_THIRDID1 = "thirdId1"; + + public static final String COL_THIRDID2 = "thirdId2"; + + public static final String COL_THIRDID3 = "thirdId3"; + + public static final String COL_THIRDID4 = "thirdId4"; + + public static final String COL_THIRDID = "thirdId"; + + public static final String COL_STATUS = "status"; + + public static final String COL_GENKEYFK = "genKeyFk"; + + public static final String COL_ISUSEDY = "isUseDy"; + + public static final String COL_CREATEUSER = "createUser"; + + public static final String COL_CREATETIME = "createTime"; + + public static final String COL_UPDATEUSER = "updateUser"; + + public static final String COL_UPDATETIME = "updateTime"; + + public static final String COL_REMARK = "remark"; +} \ No newline at end of file diff --git a/src/main/java/com/glxp/api/entity/basic/BasicProductsImportLogEntity.java b/src/main/java/com/glxp/api/entity/basic/BasicProductsImportLogEntity.java new file mode 100644 index 00000000..a13054ba --- /dev/null +++ b/src/main/java/com/glxp/api/entity/basic/BasicProductsImportLogEntity.java @@ -0,0 +1,80 @@ +package com.glxp.api.entity.basic; + +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 java.util.Date; +import lombok.Data; + +@Data +@TableName(value = "basic_products_import_log") +public class BasicProductsImportLogEntity { + @TableId(value = "id", type = IdType.INPUT) + private Integer id; + + @TableField(value = "genKey") + private String genKey; + + /** + * 0:正在导入,1.正在处理,2.处理异常。3.处理完成 + */ + @TableField(value = "`status`") + private Integer status; + + @TableField(value = "fromType") + private String fromType; + + @TableField(value = "thirdSysFk") + private String thirdSysFk; + + /** + * 创建人 + */ + @TableField(value = "`createUser`") + private String createUser; + + /** + * 创建时间 + */ + @TableField(value = "createTime") + private Date createTime; + + /** + * 更新人 + */ + @TableField(value = "updateUser") + private String updateUser; + + /** + * 更新时间 + */ + @TableField(value = "updateTime") + private Date updateTime; + + /** + * 备注 + */ + @TableField(value = "remark") + private String remark; + + public static final String COL_ID = "id"; + + public static final String COL_GENKEY = "genKey"; + + public static final String COL_STATUS = "status"; + + public static final String COL_FROMTYPE = "fromType"; + + public static final String COL_THIRDSYSFK = "thirdSysFk"; + + public static final String COL_CREATEUSER = "createUser"; + + public static final String COL_CREATETIME = "createTime"; + + public static final String COL_UPDATEUSER = "updateUser"; + + public static final String COL_UPDATETIME = "updateTime"; + + public static final String COL_REMARK = "remark"; +} \ No newline at end of file