地点档案占提交
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,17 @@
|
||||
package cn.iocoder.yudao.module.backendlogistics.controller.admin.backendlogistics.bseMngt.plceAchi.vo;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Schema(description = "管理后台 - 计量点配置分页 Request VO")
|
||||
@Data
|
||||
public class AuncelConfigPageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "计量点名称", example = "张三")
|
||||
private String auncelName;
|
||||
|
||||
@Schema(description = "计量点编码")
|
||||
private String auncelCoding;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package cn.iocoder.yudao.module.backendlogistics.controller.admin.backendlogistics.bseMngt.plceAchi.vo;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Schema(description = "管理后台 - 计量点配置 Response VO")
|
||||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
public class AuncelConfigRespVO {
|
||||
|
||||
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "15341")
|
||||
@ExcelProperty("id")
|
||||
private Long id;
|
||||
|
||||
@Schema(description = "公司编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "13313")
|
||||
@ExcelProperty("公司编号")
|
||||
private Long companyId;
|
||||
|
||||
@Schema(description = "公司名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "王五")
|
||||
@ExcelProperty("公司名称")
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "计量点名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三")
|
||||
@ExcelProperty("计量点名称")
|
||||
private String auncelName;
|
||||
|
||||
@Schema(description = "计量点编码", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
@ExcelProperty("计量点编码")
|
||||
private String auncelCoding;
|
||||
|
||||
@Schema(description = "省(直辖市)")
|
||||
@ExcelProperty("省(直辖市)")
|
||||
private String state;
|
||||
|
||||
@Schema(description = "市(区)")
|
||||
@ExcelProperty("市(区)")
|
||||
private String municipality;
|
||||
|
||||
@Schema(description = "计量点类型", example = "2")
|
||||
@ExcelProperty("计量点类型")
|
||||
private String auncelType;
|
||||
|
||||
@Schema(description = "地理位置")
|
||||
@ExcelProperty("地理位置")
|
||||
private String location;
|
||||
|
||||
@Schema(description = "空重限制")
|
||||
@ExcelProperty("空重限制")
|
||||
private String limit;
|
||||
|
||||
@Schema(description = "计量作业系统")
|
||||
@ExcelProperty("计量作业系统")
|
||||
private String system;
|
||||
|
||||
@Schema(description = "经度")
|
||||
@ExcelProperty("经度")
|
||||
private BigDecimal longitude;
|
||||
|
||||
@Schema(description = "纬度")
|
||||
@ExcelProperty("纬度")
|
||||
private BigDecimal latitude;
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user