package cn.stylefeng.guns.modular.bs.locationInfo.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.IdType; import java.util.Date; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import java.io.Serializable; /** *

* 工位信息 *

* * @author cl * @since 2022-10-28 */ @TableName("bs_location_info") public class LocationInfo implements Serializable { private static final long serialVersionUID=1L; /** * 主键id */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 工位编号 */ @TableField("location_code") private String locationCode; /** * 工位名称 */ @TableField("location_name") private String locationName; /** * 工位类型(1自动2半自动3手动) */ @TableField("location_type") private String locationType; /** * 车间编号 */ @TableField("workshop_code") private String workshopCode; /** * 产线编号 */ @TableField("production_line_code") private String productionLineCode; /** * 预留字段1 */ @TableField("spare_field_1") private String spareField1; /** * 预留字段2 */ @TableField("spare_field_2") private String spareField2; /** * 备注 */ @TableField("remarks") private String remarks; /** * 创建用户 */ @TableField(value = "create_user", fill = FieldFill.INSERT) private String createUser; /** * 创建时间 */ @TableField(value = "create_time", fill = FieldFill.INSERT) private Date createTime; /** * 更改用户 */ @TableField(value = "update_user", fill = FieldFill.UPDATE) private String updateUser; /** * 更改时间 */ @TableField(value = "update_time", fill = FieldFill.UPDATE) private Date updateTime; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getLocationCode() { return locationCode; } public void setLocationCode(String locationCode) { this.locationCode = locationCode; } public String getLocationName() { return locationName; } public void setLocationName(String locationName) { this.locationName = locationName; } public String getLocationType() { return locationType; } public void setLocationType(String locationType) { this.locationType = locationType; } public String getWorkshopCode() { return workshopCode; } public void setWorkshopCode(String workshopCode) { this.workshopCode = workshopCode; } public String getProductionLineCode() { return productionLineCode; } public void setProductionLineCode(String productionLineCode) { this.productionLineCode = productionLineCode; } public String getSpareField1() { return spareField1; } public void setSpareField1(String spareField1) { this.spareField1 = spareField1; } public String getSpareField2() { return spareField2; } public void setSpareField2(String spareField2) { this.spareField2 = spareField2; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getCreateUser() { return createUser; } public void setCreateUser(String createUser) { this.createUser = createUser; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getUpdateUser() { return updateUser; } public void setUpdateUser(String updateUser) { this.updateUser = updateUser; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } @Override public String toString() { return "LocationInfo{" + "id=" + id + ", locationCode=" + locationCode + ", locationName=" + locationName + ", locationType=" + locationType + ", workshopCode=" + workshopCode + ", productionLineCode=" + productionLineCode + ", spareField1=" + spareField1 + ", spareField2=" + spareField2 + ", remarks=" + remarks + ", createUser=" + createUser + ", createTime=" + createTime + ", updateUser=" + updateUser + ", updateTime=" + updateTime + "}"; } }