refactor(tkdata): 新增主播昵称字段并优化导入顺序
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.tkdata.controller.admin.employeehosts.vo;
|
package cn.iocoder.yudao.module.tkdata.controller.admin.employeehosts.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
@@ -139,4 +140,7 @@ public class EmployeeHostsPageReqVO extends PageParam {
|
|||||||
|
|
||||||
@Schema(description = "是否删除", example = "0")
|
@Schema(description = "是否删除", example = "0")
|
||||||
private Integer isDelete;
|
private Integer isDelete;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -82,4 +82,7 @@ public class EmployeeHostsRespVO {
|
|||||||
|
|
||||||
@Schema(description = "国家英文名", example = "United States")
|
@Schema(description = "国家英文名", example = "United States")
|
||||||
private String countryEng;
|
private String countryEng;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.tkdata.controller.admin.employeehosts.vo;
|
package cn.iocoder.yudao.module.tkdata.controller.admin.employeehosts.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@@ -56,4 +57,7 @@ public class EmployeeHostsSaveReqVO {
|
|||||||
|
|
||||||
@Schema(description = "国家英文名", example = "United States")
|
@Schema(description = "国家英文名", example = "United States")
|
||||||
private String countryEng;
|
private String countryEng;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.tkdata.controller.admin.newhosts.vo;
|
package cn.iocoder.yudao.module.tkdata.controller.admin.newhosts.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@@ -50,5 +51,7 @@ public class AllocationHostsSaveReqVO {
|
|||||||
@Schema(description = "旗帜")
|
@Schema(description = "旗帜")
|
||||||
private String flag;
|
private String flag;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.tkdata.controller.admin.newhosts.vo;
|
package cn.iocoder.yudao.module.tkdata.controller.admin.newhosts.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@@ -151,4 +152,7 @@ public class NewHostsPageReqVO extends PageParam {
|
|||||||
|
|
||||||
@Schema(description = "最近 7天 是否存在直播场次", example = "0")
|
@Schema(description = "最近 7天 是否存在直播场次", example = "0")
|
||||||
private Integer hasLiveRecoder;
|
private Integer hasLiveRecoder;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -94,4 +94,8 @@ public class NewHostsRespVO {
|
|||||||
@Schema(description = "国家英文名", example = "United States")
|
@Schema(description = "国家英文名", example = "United States")
|
||||||
@ExcelProperty("国家英文名")
|
@ExcelProperty("国家英文名")
|
||||||
private String countryEng;
|
private String countryEng;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
@ExcelProperty("主播昵称")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -61,4 +61,7 @@ public class NewHostsSaveReqVO {
|
|||||||
|
|
||||||
@Schema(description = "旗帜")
|
@Schema(description = "旗帜")
|
||||||
private String flag;
|
private String flag;
|
||||||
|
|
||||||
|
@Schema(description = "主播昵称", example = "nickname")
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -87,4 +87,6 @@ public class EmployeeHostsDO extends BaseDO {
|
|||||||
private String flag;
|
private String flag;
|
||||||
|
|
||||||
private String countryEng;
|
private String countryEng;
|
||||||
|
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
package cn.iocoder.yudao.module.tkdata.dal.dataobject.newhosts;
|
package cn.iocoder.yudao.module.tkdata.dal.dataobject.newhosts;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
@@ -87,4 +89,6 @@ public class NewHostsDO extends TenantBaseDO {
|
|||||||
private Byte operationStatus;
|
private Byte operationStatus;
|
||||||
|
|
||||||
private String countryEng;
|
private String countryEng;
|
||||||
|
|
||||||
|
private String nickname;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user