Browse Source

增加swagger文档注解

dev
wangwei 2 months ago
parent
commit
0543e30e61
  1. 6
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcBrand.java
  2. 230
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcProduct.java
  3. 444
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanDetail.java
  4. 458
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanDetailRecord.java
  5. 15
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanTitle.java
  6. 108
      ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanTitleRecord.java

6
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcBrand.java

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
package com.ruoyi.dhc.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
@ -11,18 +13,22 @@ import com.ruoyi.common.core.domain.BaseEntity; @@ -11,18 +13,22 @@ import com.ruoyi.common.core.domain.BaseEntity;
* @author ruoyi
* @date 2024-07-29
*/
@ApiModel(value = "DhcBrand", description = "品牌")
public class DhcBrand extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 品牌id */
@ApiModelProperty("品牌id")
private Long brandId;
/** 品牌编码 */
@ApiModelProperty("品牌编码")
@Excel(name = "品牌编码")
private String brandCode;
/** 品牌名称 */
@ApiModelProperty("品牌名称")
@Excel(name = "品牌名称")
private String brandName;

230
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcProduct.java

@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
package com.ruoyi.dhc.domain;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
@ -7,13 +6,16 @@ import org.apache.commons.lang3.builder.ToStringBuilder; @@ -7,13 +6,16 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* 产品信息对象 dhc_product
*
*
* @author ruoyi
* @date 2024-10-08
* @date 2025-03-14
*/
@ApiModel(value = "DhcProduct", description = "产品信息")
public class DhcProduct extends BaseEntity
{
private static final long serialVersionUID = 1L;
@ -22,389 +24,417 @@ public class DhcProduct extends BaseEntity @@ -22,389 +24,417 @@ public class DhcProduct extends BaseEntity
private Long productId;
/** 产品线编码 */
@ApiModelProperty("产品线编码")
@Excel(name = "产品线编码")
private String productLine;
/** 产品线名称 */
@ApiModelProperty("产品线名称")
@Excel(name = "产品线名称")
private String productLineName;
/** 立项单号 */
@ApiModelProperty("立项单号")
@Excel(name = "立项单号")
private String projectNum;
/** 内部型号 */
@ApiModelProperty("内部型号")
@Excel(name = "内部型号")
private String internalModel;
/** 产品大类编码 */
@ApiModelProperty("产品大类编码")
@Excel(name = "产品大类编码")
private String productCategoryLarge;
/** 产品中类编码 */
@ApiModelProperty("产品中类编码")
@Excel(name = "产品中类编码")
private String productCategoryMiddle;
/** 产品小类编码 */
@ApiModelProperty("产品小类编码")
@Excel(name = "产品小类编码")
private String productCategorySmall;
/** 产品品类 */
@ApiModelProperty("产品品类")
@Excel(name = "产品品类")
private String productCategory;
/** 产品系列 */
@ApiModelProperty("产品系列")
@Excel(name = "产品系列")
private String productSeries;
/** 基础型号 */
@ApiModelProperty("基础型号")
@Excel(name = "基础型号")
private String baseModel;
/** 本厂型号 */
@ApiModelProperty("本厂型号")
@Excel(name = "本厂型号")
private String factoryModel;
/** 客户型号 */
@ApiModelProperty("客户型号")
@Excel(name = "客户型号")
private String customerModel;
/** 品牌id */
@ApiModelProperty("品牌id")
@Excel(name = "品牌id")
private Long brandId;
/** 品牌名称 */
@ApiModelProperty("品牌名称")
@Excel(name = "品牌名称")
private String brandName;
/** IR时间 */
@ApiModelProperty("IR时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "IR时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date irDatetime;
/** DR时间 */
@ApiModelProperty("DR时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "DR时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date drDatetime;
/** 包装方式 */
@ApiModelProperty("包装方式")
@Excel(name = "包装方式")
private String packWayCode;
/** 净重 */
@ApiModelProperty("净重")
@Excel(name = "净重")
private BigDecimal productNetWeight;
/** 产品尺寸-长 */
@ApiModelProperty("产品尺寸-长")
@Excel(name = "产品尺寸-长")
private BigDecimal productLength;
/** 产品尺寸-宽 */
@ApiModelProperty("产品尺寸-宽")
@Excel(name = "产品尺寸-宽")
private BigDecimal productWidth;
/** 产品尺寸-高 */
@ApiModelProperty("产品尺寸-高")
@Excel(name = "产品尺寸-高")
private BigDecimal productHeight;
/** 装柜数量-20GP */
@ApiModelProperty("装柜数量-20GP")
@Excel(name = "装柜数量-20GP")
private Long loadingQuantity20gp;
/** 装柜数量-40GP */
@ApiModelProperty("装柜数量-40GP")
@Excel(name = "装柜数量-40GP")
private Long loadingQuantity40gp;
/** 装柜数量-40HQ */
@ApiModelProperty("装柜数量-40HQ")
@Excel(name = "装柜数量-40HQ")
private Long loadingQuantity40hq;
/** 最小订单量 */
@ApiModelProperty("最小订单量")
@Excel(name = "最小订单量")
private Long minOrderQuantity;
/** 其他要求 */
@ApiModelProperty("其他要求")
@Excel(name = "其他要求")
private String otherRequirement;
/** 型号状态(0草稿 1在售 2下市 3冻结) */
@ApiModelProperty("型号状态(0草稿 1在售 2下市 3冻结)")
@Excel(name = "型号状态", readConverterExp = "0=草稿,1=在售,2=下市,3=冻结")
private String STATUS;
/** 审核状态(0审批中 1已通过 2已驳回) */
@ApiModelProperty("审核状态(0审批中 1已通过 2已驳回)")
@Excel(name = "审核状态", readConverterExp = "0=审批中,1=已通过,2=已驳回")
private String approveStatus;
/** 删除标志(0代表存在 1代表删除) */
private String delFlag;
public void setProductId(Long productId)
public void setProductId(Long productId)
{
this.productId = productId;
}
public Long getProductId()
public Long getProductId()
{
return productId;
}
public void setProductLine(String productLine)
public void setProductLine(String productLine)
{
this.productLine = productLine;
}
public String getProductLine()
public String getProductLine()
{
return productLine;
}
public void setProductLineName(String productLineName)
public void setProductLineName(String productLineName)
{
this.productLineName = productLineName;
}
public String getProductLineName()
public String getProductLineName()
{
return productLineName;
}
public void setProjectNum(String projectNum)
public void setProjectNum(String projectNum)
{
this.projectNum = projectNum;
}
public String getProjectNum()
public String getProjectNum()
{
return projectNum;
}
public void setInternalModel(String internalModel)
public void setInternalModel(String internalModel)
{
this.internalModel = internalModel;
}
public String getInternalModel()
public String getInternalModel()
{
return internalModel;
}
public void setProductCategoryLarge(String productCategoryLarge)
public void setProductCategoryLarge(String productCategoryLarge)
{
this.productCategoryLarge = productCategoryLarge;
}
public String getProductCategoryLarge()
public String getProductCategoryLarge()
{
return productCategoryLarge;
}
public void setProductCategoryMiddle(String productCategoryMiddle)
public void setProductCategoryMiddle(String productCategoryMiddle)
{
this.productCategoryMiddle = productCategoryMiddle;
}
public String getProductCategoryMiddle()
public String getProductCategoryMiddle()
{
return productCategoryMiddle;
}
public void setProductCategorySmall(String productCategorySmall)
public void setProductCategorySmall(String productCategorySmall)
{
this.productCategorySmall = productCategorySmall;
}
public String getProductCategorySmall()
public String getProductCategorySmall()
{
return productCategorySmall;
}
public void setProductCategory(String productCategory)
public void setProductCategory(String productCategory)
{
this.productCategory = productCategory;
}
public String getProductCategory()
public String getProductCategory()
{
return productCategory;
}
public void setProductSeries(String productSeries)
public void setProductSeries(String productSeries)
{
this.productSeries = productSeries;
}
public String getProductSeries()
public String getProductSeries()
{
return productSeries;
}
public void setBaseModel(String baseModel)
public void setBaseModel(String baseModel)
{
this.baseModel = baseModel;
}
public String getBaseModel()
public String getBaseModel()
{
return baseModel;
}
public void setFactoryModel(String factoryModel)
public void setFactoryModel(String factoryModel)
{
this.factoryModel = factoryModel;
}
public String getFactoryModel()
public String getFactoryModel()
{
return factoryModel;
}
public void setCustomerModel(String customerModel)
public void setCustomerModel(String customerModel)
{
this.customerModel = customerModel;
}
public String getCustomerModel()
public String getCustomerModel()
{
return customerModel;
}
public void setBrandId(Long brandId)
public void setBrandId(Long brandId)
{
this.brandId = brandId;
}
public Long getBrandId()
public Long getBrandId()
{
return brandId;
}
public void setBrandName(String brandName)
public void setBrandName(String brandName)
{
this.brandName = brandName;
}
public String getBrandName()
public String getBrandName()
{
return brandName;
}
public void setIrDatetime(Date irDatetime)
public void setIrDatetime(Date irDatetime)
{
this.irDatetime = irDatetime;
}
public Date getIrDatetime()
public Date getIrDatetime()
{
return irDatetime;
}
public void setDrDatetime(Date drDatetime)
public void setDrDatetime(Date drDatetime)
{
this.drDatetime = drDatetime;
}
public Date getDrDatetime()
public Date getDrDatetime()
{
return drDatetime;
}
public void setPackWayCode(String packWayCode)
public void setPackWayCode(String packWayCode)
{
this.packWayCode = packWayCode;
}
public String getPackWayCode()
public String getPackWayCode()
{
return packWayCode;
}
public void setProductNetWeight(BigDecimal productNetWeight)
public void setProductNetWeight(BigDecimal productNetWeight)
{
this.productNetWeight = productNetWeight;
}
public BigDecimal getProductNetWeight()
public BigDecimal getProductNetWeight()
{
return productNetWeight;
}
public void setProductLength(BigDecimal productLength)
public void setProductLength(BigDecimal productLength)
{
this.productLength = productLength;
}
public BigDecimal getProductLength()
public BigDecimal getProductLength()
{
return productLength;
}
public void setProductWidth(BigDecimal productWidth)
public void setProductWidth(BigDecimal productWidth)
{
this.productWidth = productWidth;
}
public BigDecimal getProductWidth()
public BigDecimal getProductWidth()
{
return productWidth;
}
public void setProductHeight(BigDecimal productHeight)
public void setProductHeight(BigDecimal productHeight)
{
this.productHeight = productHeight;
}
public BigDecimal getProductHeight()
public BigDecimal getProductHeight()
{
return productHeight;
}
public void setLoadingQuantity20gp(Long loadingQuantity20gp)
public void setLoadingQuantity20gp(Long loadingQuantity20gp)
{
this.loadingQuantity20gp = loadingQuantity20gp;
}
public Long getLoadingQuantity20gp()
public Long getLoadingQuantity20gp()
{
return loadingQuantity20gp;
}
public void setLoadingQuantity40gp(Long loadingQuantity40gp)
public void setLoadingQuantity40gp(Long loadingQuantity40gp)
{
this.loadingQuantity40gp = loadingQuantity40gp;
}
public Long getLoadingQuantity40gp()
public Long getLoadingQuantity40gp()
{
return loadingQuantity40gp;
}
public void setLoadingQuantity40hq(Long loadingQuantity40hq)
public void setLoadingQuantity40hq(Long loadingQuantity40hq)
{
this.loadingQuantity40hq = loadingQuantity40hq;
}
public Long getLoadingQuantity40hq()
public Long getLoadingQuantity40hq()
{
return loadingQuantity40hq;
}
public void setMinOrderQuantity(Long minOrderQuantity)
public void setMinOrderQuantity(Long minOrderQuantity)
{
this.minOrderQuantity = minOrderQuantity;
}
public Long getMinOrderQuantity()
public Long getMinOrderQuantity()
{
return minOrderQuantity;
}
public void setOtherRequirement(String otherRequirement)
public void setOtherRequirement(String otherRequirement)
{
this.otherRequirement = otherRequirement;
}
public String getOtherRequirement()
public String getOtherRequirement()
{
return otherRequirement;
}
public void setSTATUS(String STATUS)
public void setSTATUS(String STATUS)
{
this.STATUS = STATUS;
}
public String getSTATUS()
public String getSTATUS()
{
return STATUS;
}
public void setApproveStatus(String approveStatus)
public void setApproveStatus(String approveStatus)
{
this.approveStatus = approveStatus;
}
public String getApproveStatus()
public String getApproveStatus()
{
return approveStatus;
}
public void setDelFlag(String delFlag)
public void setDelFlag(String delFlag)
{
this.delFlag = delFlag;
}
public String getDelFlag()
public String getDelFlag()
{
return delFlag;
}
@ -412,40 +442,40 @@ public class DhcProduct extends BaseEntity @@ -412,40 +442,40 @@ public class DhcProduct extends BaseEntity
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("productId", getProductId())
.append("productLine", getProductLine())
.append("productLineName", getProductLineName())
.append("projectNum", getProjectNum())
.append("internalModel", getInternalModel())
.append("productCategoryLarge", getProductCategoryLarge())
.append("productCategoryMiddle", getProductCategoryMiddle())
.append("productCategorySmall", getProductCategorySmall())
.append("productCategory", getProductCategory())
.append("productSeries", getProductSeries())
.append("baseModel", getBaseModel())
.append("factoryModel", getFactoryModel())
.append("customerModel", getCustomerModel())
.append("brandId", getBrandId())
.append("brandName", getBrandName())
.append("irDatetime", getIrDatetime())
.append("drDatetime", getDrDatetime())
.append("packWayCode", getPackWayCode())
.append("productNetWeight", getProductNetWeight())
.append("productLength", getProductLength())
.append("productWidth", getProductWidth())
.append("productHeight", getProductHeight())
.append("loadingQuantity20gp", getLoadingQuantity20gp())
.append("loadingQuantity40gp", getLoadingQuantity40gp())
.append("loadingQuantity40hq", getLoadingQuantity40hq())
.append("minOrderQuantity", getMinOrderQuantity())
.append("otherRequirement", getOtherRequirement())
.append("STATUS", getSTATUS())
.append("approveStatus", getApproveStatus())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}
.append("productId", getProductId())
.append("productLine", getProductLine())
.append("productLineName", getProductLineName())
.append("projectNum", getProjectNum())
.append("internalModel", getInternalModel())
.append("productCategoryLarge", getProductCategoryLarge())
.append("productCategoryMiddle", getProductCategoryMiddle())
.append("productCategorySmall", getProductCategorySmall())
.append("productCategory", getProductCategory())
.append("productSeries", getProductSeries())
.append("baseModel", getBaseModel())
.append("factoryModel", getFactoryModel())
.append("customerModel", getCustomerModel())
.append("brandId", getBrandId())
.append("brandName", getBrandName())
.append("irDatetime", getIrDatetime())
.append("drDatetime", getDrDatetime())
.append("packWayCode", getPackWayCode())
.append("productNetWeight", getProductNetWeight())
.append("productLength", getProductLength())
.append("productWidth", getProductWidth())
.append("productHeight", getProductHeight())
.append("loadingQuantity20gp", getLoadingQuantity20gp())
.append("loadingQuantity40gp", getLoadingQuantity40gp())
.append("loadingQuantity40hq", getLoadingQuantity40hq())
.append("minOrderQuantity", getMinOrderQuantity())
.append("otherRequirement", getOtherRequirement())
.append("STATUS", getSTATUS())
.append("approveStatus", getApproveStatus())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}

444
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanDetail.java

File diff suppressed because it is too large Load Diff

458
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanDetailRecord.java

File diff suppressed because it is too large Load Diff

15
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanTitle.java

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
package com.ruoyi.dhc.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
@ -11,54 +13,67 @@ import com.ruoyi.common.core.domain.BaseEntity; @@ -11,54 +13,67 @@ import com.ruoyi.common.core.domain.BaseEntity;
* @author ruoyi
* @date 2024-09-23
*/
@ApiModel(value = "DhcRollPlanTitle", description = "滚动计划头对象")
public class DhcRollPlanTitle extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 滚动计划id */
@ApiModelProperty("滚动计划id")
private Long rollPlanId;
/** 产品线编码 */
@ApiModelProperty("产品线编码")
@Excel(name = "产品线编码")
private String productLine;
/** 产品线名称 */
@ApiModelProperty("产品线名称")
@Excel(name = "产品线名称")
private String productLineName;
/** 销售大区编码 */
@ApiModelProperty("销售大区编码")
@Excel(name = "销售大区编码")
private String areaCodeLarge;
/** 销售大区名称 */
@ApiModelProperty("销售大区名称")
@Excel(name = "销售大区名称")
private String areaNameLarge;
/** 销售小区编码 */
@ApiModelProperty("销售小区编码")
@Excel(name = "销售小区编码")
private String areaCodeSmall;
/** 销售小区名称 */
@ApiModelProperty("销售小区名称")
@Excel(name = "销售小区名称")
private String areaNameSmall;
/** 提报年 */
@ApiModelProperty("提报年")
@Excel(name = "提报年")
private Long planYear;
/** 提报周 */
@ApiModelProperty("提报周")
@Excel(name = "提报周")
private Long planWeek;
/** 锁定周 */
@ApiModelProperty("锁定周")
@Excel(name = "锁定周")
private Long lockWeeks;
/** 滚动计划状态(0初始化 1已提交 2已审核 3评审版已发布 4.正式版已发布) */
@ApiModelProperty("滚动计划状态(0初始化 1已提交 2已审核 3评审版已发布 4.正式版已发布)")
@Excel(name = "滚动计划状态", readConverterExp = "0=初始化,1=已提交,2=已审核,3=评审版已发布,4=.正式版已发布")
private String status;
/** 删除标志(0代表存在 1代表删除) */
@ApiModelProperty("删除标志(0代表存在 1代表删除)")
private String delFlag;
public void setRollPlanId(Long rollPlanId)

108
ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcRollPlanTitleRecord.java

@ -4,13 +4,16 @@ import org.apache.commons.lang3.builder.ToStringBuilder; @@ -4,13 +4,16 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* 滚动计划头历史记录对象 dhc_roll_plan_title_record
*
*
* @author ruoyi
* @date 2024-09-23
*/
@ApiModel(value = "DhcRollPlanTitleRecord", description = "滚动计划头历史记录")
public class DhcRollPlanTitleRecord extends BaseEntity
{
private static final long serialVersionUID = 1L;
@ -19,166 +22,177 @@ public class DhcRollPlanTitleRecord extends BaseEntity @@ -19,166 +22,177 @@ public class DhcRollPlanTitleRecord extends BaseEntity
private Long rollPlanRecordId;
/** 滚动计划id */
@ApiModelProperty("滚动计划id")
@Excel(name = "滚动计划id")
private Long rollPlanId;
/** 产品线编码 */
@ApiModelProperty("产品线编码")
@Excel(name = "产品线编码")
private String productLine;
/** 产品线名称 */
@ApiModelProperty("产品线名称")
@Excel(name = "产品线名称")
private String productLineName;
/** 销售大区编码 */
@ApiModelProperty("销售大区编码")
@Excel(name = "销售大区编码")
private String areaCodeLarge;
/** 销售大区名称 */
@ApiModelProperty("销售大区名称")
@Excel(name = "销售大区名称")
private String areaNameLarge;
/** 销售小区编码 */
@ApiModelProperty("销售小区编码")
@Excel(name = "销售小区编码")
private String areaCodeSmall;
/** 销售小区名称 */
@ApiModelProperty("销售小区名称")
@Excel(name = "销售小区名称")
private String areaNameSmall;
/** 提报年 */
@ApiModelProperty("提报年")
@Excel(name = "提报年")
private Long planYear;
/** 提报周 */
@ApiModelProperty("提报周")
@Excel(name = "提报周")
private Long planWeek;
/** 锁定周 */
@ApiModelProperty("锁定周")
@Excel(name = "锁定周")
private Long lockWeeks;
/** 滚动计划状态(0初始化 1已提交 2已审核 3评审版已发布 4.正式版已发布) */
@ApiModelProperty("滚动计划状态(0初始化 1已提交 2已审核 3评审版已发布 4.正式版已发布)")
@Excel(name = "滚动计划状态", readConverterExp = "0=初始化,1=已提交,2=已审核,3=评审版已发布,4=.正式版已发布")
private String status;
/** 删除标志(0代表存在 1代表删除) */
private String delFlag;
public void setRollPlanRecordId(Long rollPlanRecordId)
public void setRollPlanRecordId(Long rollPlanRecordId)
{
this.rollPlanRecordId = rollPlanRecordId;
}
public Long getRollPlanRecordId()
public Long getRollPlanRecordId()
{
return rollPlanRecordId;
}
public void setRollPlanId(Long rollPlanId)
public void setRollPlanId(Long rollPlanId)
{
this.rollPlanId = rollPlanId;
}
public Long getRollPlanId()
public Long getRollPlanId()
{
return rollPlanId;
}
public void setProductLine(String productLine)
public void setProductLine(String productLine)
{
this.productLine = productLine;
}
public String getProductLine()
public String getProductLine()
{
return productLine;
}
public void setProductLineName(String productLineName)
public void setProductLineName(String productLineName)
{
this.productLineName = productLineName;
}
public String getProductLineName()
public String getProductLineName()
{
return productLineName;
}
public void setAreaCodeLarge(String areaCodeLarge)
public void setAreaCodeLarge(String areaCodeLarge)
{
this.areaCodeLarge = areaCodeLarge;
}
public String getAreaCodeLarge()
public String getAreaCodeLarge()
{
return areaCodeLarge;
}
public void setAreaNameLarge(String areaNameLarge)
public void setAreaNameLarge(String areaNameLarge)
{
this.areaNameLarge = areaNameLarge;
}
public String getAreaNameLarge()
public String getAreaNameLarge()
{
return areaNameLarge;
}
public void setAreaCodeSmall(String areaCodeSmall)
public void setAreaCodeSmall(String areaCodeSmall)
{
this.areaCodeSmall = areaCodeSmall;
}
public String getAreaCodeSmall()
public String getAreaCodeSmall()
{
return areaCodeSmall;
}
public void setAreaNameSmall(String areaNameSmall)
public void setAreaNameSmall(String areaNameSmall)
{
this.areaNameSmall = areaNameSmall;
}
public String getAreaNameSmall()
public String getAreaNameSmall()
{
return areaNameSmall;
}
public void setPlanYear(Long planYear)
public void setPlanYear(Long planYear)
{
this.planYear = planYear;
}
public Long getPlanYear()
public Long getPlanYear()
{
return planYear;
}
public void setPlanWeek(Long planWeek)
public void setPlanWeek(Long planWeek)
{
this.planWeek = planWeek;
}
public Long getPlanWeek()
public Long getPlanWeek()
{
return planWeek;
}
public void setLockWeeks(Long lockWeeks)
public void setLockWeeks(Long lockWeeks)
{
this.lockWeeks = lockWeeks;
}
public Long getLockWeeks()
public Long getLockWeeks()
{
return lockWeeks;
}
public void setStatus(String status)
public void setStatus(String status)
{
this.status = status;
}
public String getStatus()
public String getStatus()
{
return status;
}
public void setDelFlag(String delFlag)
public void setDelFlag(String delFlag)
{
this.delFlag = delFlag;
}
public String getDelFlag()
public String getDelFlag()
{
return delFlag;
}
@ -186,23 +200,23 @@ public class DhcRollPlanTitleRecord extends BaseEntity @@ -186,23 +200,23 @@ public class DhcRollPlanTitleRecord extends BaseEntity
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("rollPlanRecordId", getRollPlanRecordId())
.append("rollPlanId", getRollPlanId())
.append("productLine", getProductLine())
.append("productLineName", getProductLineName())
.append("areaCodeLarge", getAreaCodeLarge())
.append("areaNameLarge", getAreaNameLarge())
.append("areaCodeSmall", getAreaCodeSmall())
.append("areaNameSmall", getAreaNameSmall())
.append("planYear", getPlanYear())
.append("planWeek", getPlanWeek())
.append("lockWeeks", getLockWeeks())
.append("status", getStatus())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}
.append("rollPlanRecordId", getRollPlanRecordId())
.append("rollPlanId", getRollPlanId())
.append("productLine", getProductLine())
.append("productLineName", getProductLineName())
.append("areaCodeLarge", getAreaCodeLarge())
.append("areaNameLarge", getAreaNameLarge())
.append("areaCodeSmall", getAreaCodeSmall())
.append("areaNameSmall", getAreaNameSmall())
.append("planYear", getPlanYear())
.append("planWeek", getPlanWeek())
.append("lockWeeks", getLockWeeks())
.append("status", getStatus())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
}
}
Loading…
Cancel
Save