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