From 48db618606f0f0cafd1ce795f8bf26a0bcec2581 Mon Sep 17 00:00:00 2001 From: zhangchao <zc857179121@qq.com> Date: 星期六, 20 七月 2024 07:56:54 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/xgmFlasrs' into xgmFlasrs --- src/main/java/com/zy/third/erp/entity/InHedTB.java | 98 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 98 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/third/erp/entity/InHedTB.java b/src/main/java/com/zy/third/erp/entity/InHedTB.java new file mode 100644 index 0000000..88f75dd --- /dev/null +++ b/src/main/java/com/zy/third/erp/entity/InHedTB.java @@ -0,0 +1,98 @@ +package com.zy.third.erp.entity; + +import com.baomidou.mybatisplus.annotations.TableField; +import com.baomidou.mybatisplus.annotations.TableId; +import com.baomidou.mybatisplus.annotations.TableName; +import com.baomidou.mybatisplus.enums.IdType; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +@Data +@TableName("erp_InHedTB") +public class InHedTB implements Serializable { + + private static final long serialVersionUID = 1L; + + + @TableId(value = "AutoId", type = IdType.AUTO) + private Integer AutoId; + + @ApiModelProperty(value = "") + @TableId(value = "BillNo", type = IdType.INPUT) + @TableField("BillNo") + private String BillNo; + + /** + * StockIn:閲囪喘鍏ュ簱 + * ProductIn:鎴愬搧鍏ュ簱鍗� + * ItemMoveIn:璋冩嫧鍏ュ簱 + * ItemSwitchIn:褰㈡�佽浆鎹㈠叆搴� + * CheckMoreIn:鐩樼泩鍏ュ簱鍗� + */ +// @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @TableField("BillDate") + private Date BillDate; + + @TableField("IoKindID") + private String IoKindID; + + @TableField("IoKindName") + private String ioKindName; + + /** + * 渚涘簲鍟嗐�侀儴闂↖D + */ + @ApiModelProperty(value = "渚涘簲鍟嗐�侀儴闂↖D") + @TableField("ObjectId") + private String ObjectId; + + /** + * 渚涘簲鍟嗐�侀儴闂ㄥ悕绉� + */ + @TableField("ObjectName") + @ApiModelProperty(value = "渚涘簲鍟嗐�侀儴闂ㄥ悕绉�") + private String ObjectName; + + @ApiModelProperty(value = "") + @TableField("Remark") + private String remark; + + @TableField("WareId") + private String wareId; + + @TableField("WareName") + private String wareName; + + @ApiModelProperty(value = "") + @TableField("Temp1") + private String Temp1; + + @ApiModelProperty(value = "") + @TableField("Temp2") + private String Temp2; + + @ApiModelProperty(value = "") + @TableField("Temp3") + private String Temp3; + + + @ApiModelProperty(value = "") +// @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @TableField("MakeDate") + private Date MakeDate; + + @ApiModelProperty(value = "") + @TableField("LKName") + private String LKName; + + /** + * + */ + @TableField("FactArea") + private String FactArea; + + +} -- Gitblit v1.9.1