25 changed files with 2876 additions and 420 deletions
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotNull; |
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 基础配置 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-04-02 |
||||
*/ |
||||
@Data |
||||
public class BasicdataPriceBasicUpdateV2VO implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "id") |
||||
private Long id; |
||||
@NotNull(message = "模板不能为空") |
||||
@ApiModelProperty(value = "模板id") |
||||
private Long templateId; |
||||
@ApiModelProperty(value = "客户id") |
||||
private Long clientId; |
||||
@ApiModelProperty(value = "品牌id") |
||||
private Long brandId; |
||||
@NotNull(message = "生效时间不能为空") |
||||
@ApiModelProperty(value = "生效时间") |
||||
private Date effectiveTime; |
||||
|
||||
} |
@ -0,0 +1,82 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 基础价格表 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-04-02 |
||||
*/ |
||||
@Data |
||||
public class BasicdataPricePageV2VO implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "id") |
||||
private String id; |
||||
|
||||
@ApiModelProperty(value = "客户名称") |
||||
private String clientName; |
||||
|
||||
@ApiModelProperty(value = "品牌名称") |
||||
private String brandName; |
||||
|
||||
@ApiModelProperty(value = "品牌id") |
||||
private String brandId; |
||||
|
||||
@ApiModelProperty(value = "客户id") |
||||
private String clientId; |
||||
|
||||
@ApiModelProperty(value = "价格模板id") |
||||
private String templateId; |
||||
|
||||
@ApiModelProperty(value = "价格模板名称") |
||||
private String templateName; |
||||
|
||||
@ApiModelProperty(value = "模板服务类型") |
||||
private String serviceType; |
||||
|
||||
@ApiModelProperty(value = "维护状态") |
||||
private String maintenanceStatus; |
||||
|
||||
@ApiModelProperty(value = "生效状态") |
||||
private String effectiveStatus; |
||||
|
||||
@ApiModelProperty(value = "修改时间") |
||||
private String updateTime; |
||||
|
||||
@ApiModelProperty(value = "配送-上楼费免费楼层") |
||||
private String dispatchStairsCarryingCharge; |
||||
|
||||
@ApiModelProperty(value = "配送-向上判断件数") |
||||
private String dispatchUpwardJudgment; |
||||
|
||||
@ApiModelProperty(value = "配送-向上判断加价") |
||||
private String dispatchUpwardJudgmentCost; |
||||
|
||||
@ApiModelProperty(value = "生效时间") |
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
private Date effectiveTime; |
||||
|
||||
} |
@ -0,0 +1,84 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.excel.pricev2; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 价格 Excel实体类 |
||||
* |
||||
* @author chao |
||||
* @since 2024-04-19 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataPriceV3Excel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ExcelProperty(value = {"基础信息维护", "商场编码(工厂)"}, index = 0) |
||||
private String clientCode; |
||||
/** |
||||
* 客户名称 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "商场名称:(必填)"}, index = 1) |
||||
private String client; |
||||
/** |
||||
* 品牌 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "品牌:(必填)"}, index = 2) |
||||
private String brand; |
||||
/** |
||||
* 生效时间 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "生效日期:(必填)"}, index = 3) |
||||
private String effectiveTime; |
||||
|
||||
/** |
||||
* 配送服务类型 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "配送服务类型:(必填)"}, index = 4) |
||||
private String serviceType; |
||||
/** |
||||
* 结算方式 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "结算方式"}, index = 5) |
||||
private String settlementMethod; |
||||
/** |
||||
* 付款方 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "付款方"}, index = 6) |
||||
private String payingParty; |
||||
/** |
||||
* 模版名称 |
||||
*/ |
||||
@ExcelProperty(value = {"基础信息维护", "模版名称"}, index = 7) |
||||
private String templateName; |
||||
@ExcelProperty(value = {"生效状态", "生效状态"}, index = 8) |
||||
private String effectiveStatus; |
||||
|
||||
} |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* 基础价格表 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-04-02 |
||||
*/ |
||||
@Data |
||||
public class BasicdataPriceV2Query implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "ids 用于勾选导出") |
||||
private String ids; |
||||
|
||||
@ApiModelProperty(value = "客户名称") |
||||
private String clientName; |
||||
|
||||
@ApiModelProperty(value = "品牌名称") |
||||
private String brandName; |
||||
|
||||
@ApiModelProperty(value = "客户ids 用于批量查询") |
||||
private String clientIds; |
||||
|
||||
@ApiModelProperty(value = "品牌ids 用于批量查询") |
||||
private String brandIds; |
||||
|
||||
@ApiModelProperty(value = "维护状态") |
||||
private String maintenanceStatus; |
||||
|
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue