package com.cpxt.biz.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import lombok.Data; /** * 客户配送状态 * @TableName biz_customer_state */ @TableName(value ="biz_customer_state") @Data public class BizCustomerState implements Serializable { /** * ID */ @TableId(type = IdType.AUTO) private Integer id; /** * 客户ID */ private Integer customerId; /** * 路线数 */ private Integer routeCount; /** * 完成路线数 */ private Integer finishRoute; /** * 门店数 */ private Integer shopCount; /** * 完成门店数 */ private Integer finishShop; /** * 订单数 */ private Integer orderCount; /** * 完成订单数 */ private Integer finishOrder; /** * 运单数 */ private Integer subOrderCount; /** * 完成运单数 */ private Integer finishSubOrder; @TableField(exist = false) private static final long serialVersionUID = 1L; }