add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iotechn.unimall.data.domain;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.dobbinsoft.fw.core.annotation.doc.ApiEntity;
import com.dobbinsoft.fw.core.annotation.doc.ApiField;
import com.dobbinsoft.fw.support.domain.SuperDO;
import lombok.Data;
 
/**
 * Created with IntelliJ IDEA.
 * Description:
 * User: kbq
 * Date: 2019-07-07
 * Time: 上午11:41
 */
@Data
@ApiEntity(description = "运费模板特殊地区")
@TableName("unimall_freight_template_carriage")
public class FreightTemplateCarriageDO extends SuperDO {
 
    @ApiField(description = "主表ID")
    private Long templateId;
 
    @ApiField(description = "特殊地区名称")
    private String designatedArea;
 
    @ApiField(description = "免邮费价格")
    private Integer freePrice;
 
    @ApiField(description = "以起步价计算的 重量 eg 1000 代表1KG内 以firstPrice计算")
    private Integer firstWeight;
 
    @ApiField(description = "起步价")
    private Integer firstPrice;
 
    @ApiField(description = "续重 每增加N的重量")
    private Integer continueWeight;
 
    @ApiField(description = "续重价格 每增加N的重量 增加M的运费")
    private Integer continuePrice;
 
}