parent
894776036e
commit
689344098a
7 changed files with 150 additions and 117 deletions
@ -1,90 +1,95 @@ |
|||||||
package org.jeecg.modules.demo.zyorders.entity; |
package org.jeecg.modules.demo.zyorders.entity; |
||||||
|
|
||||||
import java.io.Serializable; |
import java.io.Serializable; |
||||||
import java.io.UnsupportedEncodingException; |
import java.io.UnsupportedEncodingException; |
||||||
import java.util.Date; |
import java.util.Date; |
||||||
import java.math.BigDecimal; |
import java.math.BigDecimal; |
||||||
import com.baomidou.mybatisplus.annotation.IdType; |
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
import com.baomidou.mybatisplus.annotation.TableId; |
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
import com.baomidou.mybatisplus.annotation.TableName; |
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
import lombok.Data; |
import lombok.Data; |
||||||
import com.fasterxml.jackson.annotation.JsonFormat; |
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
import org.springframework.format.annotation.DateTimeFormat; |
import org.springframework.format.annotation.DateTimeFormat; |
||||||
import org.jeecgframework.poi.excel.annotation.Excel; |
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
import org.jeecg.common.aspect.annotation.Dict; |
import org.jeecg.common.aspect.annotation.Dict; |
||||||
import io.swagger.annotations.ApiModel; |
import io.swagger.annotations.ApiModel; |
||||||
import io.swagger.annotations.ApiModelProperty; |
import io.swagger.annotations.ApiModelProperty; |
||||||
import lombok.EqualsAndHashCode; |
import lombok.EqualsAndHashCode; |
||||||
import lombok.experimental.Accessors; |
import lombok.experimental.Accessors; |
||||||
|
|
||||||
/** |
/** |
||||||
* @Description: 订单基本信息 |
* @Description: 订单基本信息 |
||||||
* @Author: jeecg-boot |
* @Author: jeecg-boot |
||||||
* @Date: 2022-12-26 |
* @Date: 2022-12-26 |
||||||
* @Version: V1.0 |
* @Version: V1.0 |
||||||
*/ |
*/ |
||||||
@Data |
@Data |
||||||
public class ZyOrdersJk implements Serializable { |
public class ZyOrdersJk implements Serializable { |
||||||
private static final long serialVersionUID = 1L; |
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
/**运费*/ |
/**运费*/ |
||||||
@Excel(name = "运费", width = 15) |
@Excel(name = "运费", width = 15) |
||||||
@ApiModelProperty(value = "运费") |
@ApiModelProperty(value = "运费") |
||||||
private java.lang.Double freight; |
private java.lang.Double freight; |
||||||
/**交货期*/ |
/**交货期*/ |
||||||
@Excel(name = "交货期", width = 15) |
@Excel(name = "交货期", width = 15) |
||||||
@ApiModelProperty(value = "交货期") |
@ApiModelProperty(value = "交货期") |
||||||
private java.lang.Integer deliveryTime; |
private java.lang.Integer deliveryTime; |
||||||
/**订单类型*/ |
/**订单类型*/ |
||||||
@Excel(name = "订单类型", width = 15, dicCode = "orders_type") |
@Excel(name = "订单类型", width = 15, dicCode = "orders_type") |
||||||
@Dict(dicCode = "orders_type") |
@Dict(dicCode = "orders_type") |
||||||
@ApiModelProperty(value = "订单类型") |
@ApiModelProperty(value = "订单类型") |
||||||
private java.lang.Integer ordersType; |
private java.lang.Integer ordersType; |
||||||
/**顾客id*/ |
/**顾客id*/ |
||||||
@Excel(name = "顾客id", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Excel(name = "顾客id", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@ApiModelProperty(value = "顾客id") |
@ApiModelProperty(value = "顾客id") |
||||||
private java.lang.String userId; |
private java.lang.String userId; |
||||||
/**商品条目数量*/ |
/**商品条目数量*/ |
||||||
@Excel(name = "商品条目数量", width = 15) |
@Excel(name = "商品条目数量", width = 15) |
||||||
@ApiModelProperty(value = "商品条目数量") |
@ApiModelProperty(value = "商品条目数量") |
||||||
private java.lang.Integer goodsQuantity; |
private java.lang.Integer goodsQuantity; |
||||||
/**顾客地址id*/ |
/**顾客地址id*/ |
||||||
@Excel(name = "顾客地址id", width = 15) |
@Excel(name = "顾客地址id", width = 15) |
||||||
@ApiModelProperty(value = "顾客地址id") |
@ApiModelProperty(value = "顾客地址id") |
||||||
private java.lang.String addressId; |
private java.lang.String addressId; |
||||||
/**收货人*/ |
/**收货人*/ |
||||||
@Excel(name = "收货人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Excel(name = "收货人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@ApiModelProperty(value = "收货人") |
@ApiModelProperty(value = "收货人") |
||||||
private java.lang.String receiver; |
private java.lang.String receiver; |
||||||
/**顾客发票id*/ |
/**顾客发票id*/ |
||||||
@Excel(name = "顾客发票id", width = 15) |
@Excel(name = "顾客发票id", width = 15) |
||||||
@ApiModelProperty(value = "顾客发票id") |
@ApiModelProperty(value = "顾客发票id") |
||||||
private java.lang.String invoiceId; |
private java.lang.String invoiceId; |
||||||
/**销售门店*/ |
/**销售门店*/ |
||||||
@Excel(name = "销售门店", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@Excel(name = "销售门店", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
@ApiModelProperty(value = "销售门店") |
@ApiModelProperty(value = "销售门店") |
||||||
private java.lang.String salesEnterpriseId; |
private java.lang.String salesEnterpriseId; |
||||||
/**销售员*/ |
/**销售员*/ |
||||||
@Excel(name = "销售员", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Excel(name = "销售员", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
@ApiModelProperty(value = "销售员") |
@ApiModelProperty(value = "销售员") |
||||||
private java.lang.String salespersonId; |
private java.lang.String salespersonId; |
||||||
/**物流企业*/ |
/**物流企业*/ |
||||||
@Excel(name = "物流企业", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@Excel(name = "物流企业", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
@ApiModelProperty(value = "物流企业") |
@ApiModelProperty(value = "物流企业") |
||||||
private java.lang.String logisticsEnterprisesId; |
private java.lang.String logisticsEnterprisesId; |
||||||
/**交付状态*/ |
/**交付状态*/ |
||||||
@Excel(name = "交付状态", width = 15, dicCode = "delivery_status") |
@Excel(name = "交付状态", width = 15, dicCode = "delivery_status") |
||||||
@Dict(dicCode = "delivery_status") |
@Dict(dicCode = "delivery_status") |
||||||
@ApiModelProperty(value = "交付状态") |
@ApiModelProperty(value = "交付状态") |
||||||
private java.lang.Integer deliveryStatus; |
private java.lang.Integer deliveryStatus; |
||||||
|
|
||||||
/**顾客量体id*/ |
/**是否虚拟订单*/ |
||||||
@Excel (name = "顾客量体id", width = 15, dictTable = "customer_measure", dicText = "username", dicCode = "id") |
@Dict(dicCode = "isvirtual") |
||||||
@ApiModelProperty (value = "顾客量体id") |
@ApiModelProperty(value = "是否虚拟订单") |
||||||
private java.lang.String measureId; |
private java.lang.String isvirtual; |
||||||
} |
|
||||||
|
/**顾客量体id*/ |
||||||
|
@Excel (name = "顾客量体id", width = 15, dictTable = "customer_measure", dicText = "username", dicCode = "id") |
||||||
|
@ApiModelProperty (value = "顾客量体id") |
||||||
|
private java.lang.String measureId; |
||||||
|
} |
||||||
|
Loading…
Reference in new issue