feat: 新增十一地市表格上传与结果查看
This commit is contained in:
@@ -26,6 +26,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("ASPHALT_DOMESTIC")
|
||||
@ApiModel(value = "AsphaltDomestic对象", description = "国产沥青")
|
||||
@Deprecated
|
||||
public class AsphaltDomestic extends Model<AsphaltDomestic> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -26,6 +26,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("ASPHALT_IMPORTED")
|
||||
@ApiModel(value = "AsphaltImported对象", description = "进口沥青")
|
||||
@Deprecated
|
||||
public class AsphaltImported extends Model<AsphaltImported> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -26,6 +26,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("CEMENT")
|
||||
@ApiModel(value = "Cement对象", description = "水泥")
|
||||
@Deprecated
|
||||
public class Cement extends Model<Cement> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -25,6 +25,7 @@ import lombok.Setter;
|
||||
@Setter
|
||||
@TableName("OIL")
|
||||
@ApiModel(value = "Oil对象", description = "成品油")
|
||||
@Deprecated
|
||||
public class Oil extends Model<Oil> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -10,6 +10,7 @@ import java.math.BigDecimal;
|
||||
import java.time.LocalDate;
|
||||
|
||||
@Data
|
||||
@Deprecated
|
||||
public class SteelEntity<T extends Model<?>> extends Model<T> {
|
||||
private String name;
|
||||
private String spec;
|
||||
|
@@ -26,6 +26,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("STEEL_PLATE")
|
||||
@ApiModel(value = "SteelPlate对象", description = "中厚板")
|
||||
@Deprecated
|
||||
public class SteelPlate extends SteelEntity<SteelPlate> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -23,6 +23,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("STEEL_REBAR")
|
||||
@ApiModel(value = "SteelRebar对象", description = "钢筋")
|
||||
@Deprecated
|
||||
public class SteelRebar extends SteelEntity<SteelRebar> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -25,6 +25,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("STEEL_SECTION")
|
||||
@ApiModel(value = "SteelSection对象", description = "型钢")
|
||||
@Deprecated
|
||||
public class SteelSection extends SteelEntity<SteelSection>{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -26,6 +26,7 @@ import org.apache.poi.ss.usermodel.Row;
|
||||
@Setter
|
||||
@TableName("STEEL_STRAND")
|
||||
@ApiModel(value = "SteelStrand对象", description = "钢绞线")
|
||||
@Deprecated
|
||||
public class SteelStrand extends SteelEntity<SteelStrand> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@@ -11,6 +11,7 @@ import java.util.Map;
|
||||
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class AsphaltDomesticService extends DataService<BaseMapper<AsphaltDomestic>, AsphaltDomestic> {
|
||||
public LambdaQueryWrapper<AsphaltDomestic> indexQuery(AsphaltDomestic data) {
|
||||
LambdaQueryWrapper<AsphaltDomestic> query = new LambdaQueryWrapper<>();
|
||||
|
@@ -11,6 +11,7 @@ import java.util.Map;
|
||||
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class AsphaltImportedService extends DataService<BaseMapper<AsphaltImported>, AsphaltImported> {
|
||||
public LambdaQueryWrapper<AsphaltImported> indexQuery(AsphaltImported data) {
|
||||
LambdaQueryWrapper<AsphaltImported> query = new LambdaQueryWrapper<>();
|
||||
|
@@ -10,6 +10,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class CementService extends DataService<BaseMapper<Cement>, Cement> {
|
||||
|
||||
public LambdaQueryWrapper<Cement> indexQuery(Cement data) {
|
||||
|
@@ -10,6 +10,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class OilService extends DataService<BaseMapper<Oil>, Oil> {
|
||||
public LambdaQueryWrapper<Oil> indexQuery(Oil data) {
|
||||
LambdaQueryWrapper<Oil> query = new LambdaQueryWrapper<>();
|
||||
|
@@ -13,6 +13,7 @@ import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class SteelPlateService extends DataService<BaseMapper<SteelPlate>, SteelPlate> {
|
||||
@Override
|
||||
public LambdaQueryWrapper<SteelPlate> indexQuery(SteelPlate data) {
|
||||
|
@@ -10,6 +10,7 @@ import java.util.*;
|
||||
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class SteelRebarService extends DataService<BaseMapper<SteelRebar>, SteelRebar> {
|
||||
@Override
|
||||
public LambdaQueryWrapper<SteelRebar> indexQuery(SteelRebar data) {
|
||||
|
@@ -11,6 +11,7 @@ import java.util.Map;
|
||||
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class SteelSectionService extends DataService<BaseMapper<SteelSection>, SteelSection> {
|
||||
@Override
|
||||
public LambdaQueryWrapper<SteelSection> indexQuery(SteelSection data) {
|
||||
|
@@ -10,6 +10,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
@Deprecated
|
||||
public class SteelStrandService extends DataService<BaseMapper<SteelStrand>, SteelStrand> {
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user