From 1e6e0a13d087de37d389a4d10e4a84d16ddbbd40 Mon Sep 17 00:00:00 2001 From: LSH Date: 星期二, 14 二月 2023 10:22:21 +0800 Subject: [PATCH] # --- src/main/java/com/zy/ints/entity/ErpDetTbBak.java | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 42 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/zy/ints/entity/ErpDetTbBak.java b/src/main/java/com/zy/ints/entity/ErpDetTbBak.java index 8838afc..fd9cfe4 100644 --- a/src/main/java/com/zy/ints/entity/ErpDetTbBak.java +++ b/src/main/java/com/zy/ints/entity/ErpDetTbBak.java @@ -14,17 +14,17 @@ import java.util.Date; @Data -@TableName("erp_det_tb_bak") +@TableName("ERP_DETTB_BAK") public class ErpDetTbBak implements Serializable { private static final long serialVersionUID = 1L; /** - * 鍗曟嵁鍙风爜 + * 鍗曟嵁鍙风爜 涓婚敭 */ @ApiModelProperty(value = "鍗曟嵁鍙风爜") - @TableId(value = "bill_no", type = IdType.INPUT) - @TableField("bill_no") + @TableId(value = "BIL_NO", type = IdType.INPUT) + @TableField("BIL_NO") private String billNo; /** @@ -32,7 +32,7 @@ */ @ApiModelProperty(value = "鍝佸彿") @TableId(value = "prd_no", type = IdType.INPUT) - @TableField("prd_no") + @TableField("PRD_NO") private String prdNo; /** @@ -51,13 +51,17 @@ * 澧炲噺绗﹀彿:1锛堝姞锛屽叆搴擄級銆�2锛堝噺锛屽嚭搴擄級 */ @ApiModelProperty(value = "澧炲噺绗﹀彿:1锛堝姞锛屽叆搴擄級銆�2锛堝噺锛屽嚭搴擄級") - @TableField("add_id") private String addId; + + @ApiModelProperty(value = "澧炲噺绗﹀彿:1锛堝姞锛屽叆搴擄級銆�2锛堝噺锛屽嚭搴擄級") + @TableField("ADD_ID") + private Integer addId2; /** * 鏁伴噺 */ @ApiModelProperty(value = "鏁伴噺") + @TableField("QTY") private Double qty; /** @@ -65,13 +69,14 @@ */ @ApiModelProperty(value = "璐у搧鐗瑰緛") @TableId(value = "prd_mark", type = IdType.INPUT) - @TableField("prd_mark") + @TableField("PRD_MARK") private String prdMark; /** * 浠撳簱 */ @ApiModelProperty(value = "浠撳簱") + @TableField("WH") private String wh; /** @@ -79,39 +84,53 @@ */ @ApiModelProperty(value = "鏃ユ湡") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @TableField("BIL_DATE") private Date billdate; /** * 鐘舵��:0锛堝垵濮嬬姸鎬侊級銆�1锛堝凡鎺ユ敹锛夈��2锛堝紓甯革級 */ @ApiModelProperty(value = "鐘舵��:0锛堝垵濮嬬姸鎬侊級銆�1锛堝凡鎺ユ敹锛夈��2锛堝紓甯革級") + @TableField("STATUS") private Integer status; + + /** + * 琛屽彿 涓婚敭 + */ + @ApiModelProperty(value = "鐘舵��:0锛堝垵濮嬬姸鎬侊級銆�1锛堝凡鎺ユ敹锛夈��2锛堝紓甯革級") + @TableField("ITM") + private Integer itm; /** * 澶囩敤瀛楁1 */ @ApiModelProperty(value = "澶囩敤瀛楁1") + @TableField("Temp1") private String temp1; /** * 澶囩敤瀛楁2 */ @ApiModelProperty(value = "澶囩敤瀛楁2") + @TableField("Temp2") private String temp2; /** * 澶囩敤瀛楁3 */ @ApiModelProperty(value = "澶囩敤瀛楁3") + @TableField("Temp3") private String temp3; public ErpDetTbBak() { } - public ErpDetTbBak(String billNo, String prdNo, String iokindid, String addId, Double qty, String prdMark, String wh, Date billdate, Integer status, String temp1, String temp2, String temp3) { + public ErpDetTbBak(String billNo, String prdNo, String iokindid, int itm, int addId2, String addId, Double qty, String prdMark, String wh, Date billdate, Integer status, String temp1, String temp2, String temp3) { this.billNo = billNo; this.prdNo = prdNo; this.iokindid = iokindid; + this.itm = itm; + this.addId2 = addId2; this.addId = addId; this.qty = qty; this.prdMark = prdMark; @@ -123,6 +142,21 @@ this.temp3 = temp3; } + public ErpDetTbBak(String billNo, String prdNo, int itm, int addId2, Double qty, String prdMark, String wh, Date billdate, Integer status, String temp1, String temp2, String temp3) { + this.billNo = billNo; + this.prdNo = prdNo; + this.itm = itm; + this.addId2 = addId2; + this.qty = qty; + this.prdMark = prdMark; + this.wh = wh; + this.billdate = billdate; + this.status = status; + this.temp1 = temp1; + this.temp2 = temp2; + this.temp3 = temp3; + } + // DetTb detTb = new DetTb( // null, // id[闈炵┖] // null, // 鍗曟嵁鍙风爜[闈炵┖] -- Gitblit v1.9.1