|
@@ -7,14 +7,16 @@ import com.fs.common.core.domain.BaseEntity;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.Getter;
|
|
|
+import lombok.ToString;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
/**
|
|
|
* 仓库对象 fs_warehouses
|
|
|
*
|
|
|
- * @author fs
|
|
|
+ * @author xdd
|
|
|
* @date 2025-03-07
|
|
|
+ * @since 1.0.0
|
|
|
*/
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
@Data
|
|
@@ -60,64 +62,4 @@ public class FsWarehouses extends BaseEntity
|
|
|
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date updatedAt;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWarehouseName(String warehouseName)
|
|
|
- {
|
|
|
- this.warehouseName = warehouseName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWarehouseCode(String warehouseCode)
|
|
|
- {
|
|
|
- this.warehouseCode = warehouseCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWarehouseAddress(String warehouseAddress)
|
|
|
- {
|
|
|
- this.warehouseAddress = warehouseAddress;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContactPerson(String contactPerson)
|
|
|
- {
|
|
|
- this.contactPerson = contactPerson;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContactPhone(String contactPhone)
|
|
|
- {
|
|
|
- this.contactPhone = contactPhone;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsActive(Integer isActive)
|
|
|
- {
|
|
|
- this.isActive = isActive;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatedAt(Date createdAt)
|
|
|
- {
|
|
|
- this.createdAt = createdAt;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdatedAt(Date updatedAt)
|
|
|
- {
|
|
|
- this.updatedAt = updatedAt;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("warehouseName", getWarehouseName())
|
|
|
- .append("warehouseCode", getWarehouseCode())
|
|
|
- .append("warehouseAddress", getWarehouseAddress())
|
|
|
- .append("contactPerson", getContactPerson())
|
|
|
- .append("contactPhone", getContactPhone())
|
|
|
- .append("isActive", getIsActive())
|
|
|
- .append("createdAt", getCreatedAt())
|
|
|
- .append("updatedAt", getUpdatedAt())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|