package com.zy.third.erp.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.core.common.Cools;import io.swagger.annotations.ApiModelProperty;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.text.SimpleDateFormat;
|
import java.util.Date;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
@Data
|
@NoArgsConstructor
|
@TableName("erp_ItemTB_bak")
|
public class ItemTBBak implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "AutoId",type = IdType.AUTO)
|
private Integer autoId;
|
|
@TableField("ItemId")
|
private String ItemID;
|
|
@ApiModelProperty(value= "")
|
@TableField("ItemCode")
|
private String ItemCode;
|
|
@ApiModelProperty(value= "")
|
@TableField("ItemName")
|
private String ItemName;
|
|
@ApiModelProperty(value= "")
|
@TableField("ItemSpc")
|
private String ItemSpc;
|
|
@TableField("ItemPic")
|
private String itemPic;
|
|
@ApiModelProperty(value= "")
|
@TableField("ItemUnit")
|
private String ItemUnit;
|
|
/**
|
* 毛坯、半成品、成品
|
*/
|
@TableField("ItemKind")
|
@ApiModelProperty(value= "毛坯、半成品、成品")
|
private String ItemKind;
|
|
@ApiModelProperty(value= "")
|
@TableField("Remark")
|
private String remark;
|
|
/**
|
* 00:新增 22:删除
|
*/
|
@ApiModelProperty(value= "00:新增 22:删除")
|
@TableField("Flag")
|
private String flag;
|
|
@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;
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@TableField("DelDate")
|
private Date delDate;
|
|
@ApiModelProperty(value= "")
|
@TableField("LKName")
|
private String LKName;
|
|
// ItemTBBak itemTBBak = new ItemTBBak(
|
// null, // [非空]
|
// null, // [非空]
|
// null, // [非空]
|
// null, //
|
// null, // [非空]
|
// null, // 毛坯、半成品、成品
|
// null, //
|
// null, // 00:新增 22:删除
|
// null, //
|
// null, //
|
// null, //
|
// null, //
|
// null, //
|
// null //
|
// );
|
|
public String getItemID() {
|
return ItemID;
|
}
|
|
public void setItemID(String ItemID) {
|
this.ItemID = ItemID;
|
}
|
|
public String getItemCode() {
|
return ItemCode;
|
}
|
|
public void setItemCode(String ItemCode) {
|
this.ItemCode = ItemCode;
|
}
|
|
public String getItemName() {
|
return ItemName;
|
}
|
|
public void setItemName(String ItemName) {
|
this.ItemName = ItemName;
|
}
|
|
public String getItemSpc() {
|
return ItemSpc;
|
}
|
|
public void setItemSpc(String ItemSpc) {
|
this.ItemSpc = ItemSpc;
|
}
|
|
public String getItemUnit() {
|
return ItemUnit;
|
}
|
|
public void setItemUnit(String ItemUnit) {
|
this.ItemUnit = ItemUnit;
|
}
|
|
public String getItemKind() {
|
return ItemKind;
|
}
|
|
public void setItemKind(String ItemKind) {
|
this.ItemKind = ItemKind;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getFlag() {
|
return flag;
|
}
|
|
public void setFlag(String flag) {
|
this.flag = flag;
|
}
|
|
public Date getMakedate() {
|
return makedate;
|
}
|
|
public String getMakedate$(){
|
if (Cools.isEmpty(this.makedate)){
|
return "";
|
}
|
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.makedate);
|
}
|
|
public void setMakedate(Date makedate) {
|
this.makedate = makedate;
|
}
|
|
public String getTemp1() {
|
return temp1;
|
}
|
|
public void setTemp1(String temp1) {
|
this.temp1 = temp1;
|
}
|
|
public String getTemp2() {
|
return temp2;
|
}
|
|
public void setTemp2(String temp2) {
|
this.temp2 = temp2;
|
}
|
|
public String getTemp3() {
|
return temp3;
|
}
|
|
public void setTemp3(String temp3) {
|
this.temp3 = temp3;
|
}
|
|
|
|
|
}
|