| package com.doumee.dao.business.model; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.doumee.core.model.LoginUserInfo; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import io.swagger.models.auth.In; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 接单权重配置表 | 
|  * @author 江蹄蹄 | 
|  * @date 2025/07/09 12:00 | 
|  */ | 
| @Data | 
| @ApiModel("接单权重配置表") | 
| @TableName("`receive_weight`") | 
| public class ReceiveWeight { | 
|   | 
|     @TableId(type = IdType.AUTO) | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1") | 
|     @ExcelColumn(name="是否已删除 0未删除 1已删除") | 
|     private Integer deleted; | 
|   | 
|     @ApiModelProperty(value = "状态:0=启用;1=禁用;", example = "1") | 
|     @ExcelColumn(name="状态:0=启用;1=禁用;") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "最大接单量", example = "1") | 
|     @ExcelColumn(name="最大接单量") | 
|     private Integer receiveMax; | 
|   | 
|     @ApiModelProperty(value = "最小接单量", example = "1") | 
|     @ExcelColumn(name="最小接单量") | 
|     private Integer receiveMin; | 
|   | 
|     @ApiModelProperty(value = "优先级", example = "1") | 
|     @ExcelColumn(name="优先级") | 
|     private Integer level; | 
|   | 
|     @ApiModelProperty(value = "订单查看延迟时间", example = "1") | 
|     @ExcelColumn(name="订单查看延迟时间") | 
|     private Integer delayTime; | 
|   | 
|     @ApiModelProperty(value = "排序码", example = "1") | 
|     @ExcelColumn(name="排序码") | 
|     private Integer sortnum; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @TableField(exist = false) | 
|     private String updateUserName; | 
| } |