7 changed files with 179 additions and 30 deletions
@ -0,0 +1,102 @@ |
|||||||
|
/* |
||||||
|
* 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.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import org.springblade.core.tenant.mp.TenantEntity; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* 基础客户品牌类型明细表 实体类 |
||||||
|
* @author zhaoqiaobo |
||||||
|
* @since 2024-03-04 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("logpm_basicdata_freight_detail") |
||||||
|
@ApiModel(value = "BasicdataFreight明细对象", description = "基础客户品牌类型明细表") |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataFreightDetailEntity extends TenantEntity { |
||||||
|
|
||||||
|
/** |
||||||
|
* 预留1 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留1") |
||||||
|
private String reserve1; |
||||||
|
/** |
||||||
|
* 预留2 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留2") |
||||||
|
private String reserve2; |
||||||
|
/** |
||||||
|
* 预留3 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留3") |
||||||
|
private String reserve3; |
||||||
|
/** |
||||||
|
* 预留4 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留4") |
||||||
|
private String reserve4; |
||||||
|
/** |
||||||
|
* 预留5 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留5") |
||||||
|
private String reserve5; |
||||||
|
/** |
||||||
|
* 计算方式;1件 2方 3公斤 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "计算方式;1件 2方 3公斤") |
||||||
|
private Long formulaMode; |
||||||
|
@ApiModelProperty(value = "计算方式;1件 2方 3公斤") |
||||||
|
private String formulaModeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 费用名称 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "费用名称id") |
||||||
|
private String itemId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "费用名称") |
||||||
|
private String itemName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 费用 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "费用") |
||||||
|
private BigDecimal cost; |
||||||
|
/** |
||||||
|
* 类型id |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "类型:干,仓,配") |
||||||
|
private String typeId; |
||||||
|
/** |
||||||
|
* 类型名称 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "类型:干,仓,配") |
||||||
|
private String typeName; |
||||||
|
/** |
||||||
|
* 类型 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "基础客户品牌类型id") |
||||||
|
private Long freightId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
/* |
||||||
|
* 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 lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 基础客户品牌类型表 视图实体类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-06-08 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class BasicdataFreightApiVO implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
private String itemName; |
||||||
|
private String category; |
||||||
|
private String issueWarehouse; |
||||||
|
private String destination; |
||||||
|
private String arrivalWarehouse; |
||||||
|
} |
Loading…
Reference in new issue