| | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import cn.hutool.core.annotation.Alias; |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.yuanchu.mom.annotation.ValueTableShow; |
| | | import com.yuanchu.mom.common.OrderBy; |
| | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | @Accessors(chain = true) |
| | | public class DataReporting extends OrderBy implements Serializable { |
| | | |
| | | /** |
| | |
| | | */ |
| | | @NotNull(message="[]不能为空") |
| | | @ApiModelProperty("主键") |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 登记人 |
| | |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | @ValueTableShow(3) |
| | | private String name; |
| | | |
| | | @ApiModelProperty("姓名") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | @ValueTableShow(4) |
| | | private String name2; |
| | | |
| | | /** |
| | | * 渠道 |
| | | */ |
| | |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | @ValueTableShow(4) |
| | | private String channel; |
| | | |
| | | @ApiModelProperty("代理商") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | @ValueTableShow(4) |
| | | private String agent; |
| | | |
| | | /** |
| | | * 项目 |
| | | */ |
| | |
| | | */ |
| | | @ApiModelProperty("展现量") |
| | | @ValueTableShow(6) |
| | | private Integer show; |
| | | private Integer showNum; |
| | | /** |
| | | * 点击量 |
| | | */ |
| | |
| | | /** |
| | | * 代理返点 |
| | | */ |
| | | @ApiModelProperty("代理返点") |
| | | @ApiModelProperty("员工代理返点") |
| | | @ValueTableShow(17) |
| | | private BigDecimal agentRebate; |
| | | /** |
| | |
| | | /** |
| | | * 备用字段 |
| | | */ |
| | | @ApiModelProperty("备用字段") |
| | | @ApiModelProperty("做进来") |
| | | @ValueTableShow(23) |
| | | private BigDecimal remark; |
| | | /** |
| | |
| | | @Size(max= 255,message="编码长度不能超过255") |
| | | @ApiModelProperty("创建用户") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | private String createUser; |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | /** |
| | | * |
| | | */ |
| | | @Size(max= 255,message="编码长度不能超过255") |
| | | @ApiModelProperty("更新用户") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | private String updateUser; |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | } |