forked from ddrilling/AsbCloudServer
Проработка для ротора и слайда: все поля (кроме Примечания) должны быть not nullable
This commit is contained in:
parent
ac8394310e
commit
938562448d
@ -95,109 +95,109 @@ public class ProcessMapPlanReamingRotorDto : ProcessMapPlanBaseDto
|
||||
/// Проработка 2, Количество повторений, шт.
|
||||
/// </summary>
|
||||
[Range(0, 99, ErrorMessage = "Проработка 2, Количество повторений, шт., должно быть в пределах от 0 до 99")]
|
||||
public int? Reaming2RepetitionsCount { get; set; }
|
||||
public int Reaming2RepetitionsCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Скорость, м/ч., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 2, Скорость, м/ч., Вверх, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming2RopUp { get; set; }
|
||||
public double Reaming2RopUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Скорость, м/ч., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 2, Скорость, м/ч., Вниз, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming2RopDown { get; set; }
|
||||
public double Reaming2RopDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Обороты, об/мин., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 2, Обороты, об/мин., Вверх, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming2RpmUp { get; set; }
|
||||
public double Reaming2RpmUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Обороты, об/мин., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 2, Обороты, об/мин., Вниз, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming2RpmDown { get; set; }
|
||||
public double Reaming2RpmDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Расход, л/с., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 2, Расход, л/с., Вверх, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming2FlowRateUp { get; set; }
|
||||
public double Reaming2FlowRateUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Расход, л/с., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 2, Расход, л/с., Вниз, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming2FlowRateDown { get; set; }
|
||||
public double Reaming2FlowRateDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Интервал проработки, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 30.0, ErrorMessage = "Проработка 2, Интервал проработки, м., должно быть в пределах от 0 до 30")]
|
||||
public double? Reaming2Interval { get; set; }
|
||||
public double Reaming2Interval { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Остановка над забоем, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 10.0, ErrorMessage = "Остановка над забоем, м., должно быть в пределах от 0 до 10")]
|
||||
public double? Reaming2StopPointOffBottom { get; set; }
|
||||
public double Reaming2StopPointOffBottom { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Количество повторений, шт.
|
||||
/// </summary>
|
||||
[Range(0, 99, ErrorMessage = "Проработка 3, Количество повторений, шт., должно быть в пределах от 0 до 99")]
|
||||
public int? Reaming3RepetitionsCount { get; set; }
|
||||
public int Reaming3RepetitionsCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Скорость, м/ч., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 3, Скорость, м/ч., Вверх, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming3RopUp { get; set; }
|
||||
public double Reaming3RopUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Скорость, м/ч., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 3, Скорость, м/ч., Вниз, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming3RopDown { get; set; }
|
||||
public double Reaming3RopDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Обороты, об/мин., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 3, Обороты, об/мин., Вверх, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming3RpmUp { get; set; }
|
||||
public double Reaming3RpmUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Обороты, об/мин., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 3, Обороты, об/мин., Вниз, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming3RpmDown { get; set; }
|
||||
public double Reaming3RpmDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Расход, л/с., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 3, Расход, л/с., Вверх, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming3FlowRateUp { get; set; }
|
||||
public double Reaming3FlowRateUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Расход, л/с., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 3, Расход, л/с., Вниз, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming3FlowRateDown { get; set; }
|
||||
public double Reaming3FlowRateDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Интервал проработки, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 30.0, ErrorMessage = "Проработка 3, Интервал проработки, м., должно быть в пределах от 0 до 30")]
|
||||
public double? Reaming3Interval { get; set; }
|
||||
public double Reaming3Interval { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Остановка над забоем, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 10.0, ErrorMessage = "Остановка над забоем, м., должно быть в пределах от 0 до 10")]
|
||||
public double? Reaming3StopPointOffBottom { get; set; }
|
||||
public double Reaming3StopPointOffBottom { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Примечание
|
||||
|
@ -95,55 +95,55 @@ public class ProcessMapPlanReamingSlideDto : ProcessMapPlanBaseDto
|
||||
/// Проработка 2, Количество повторений, шт.
|
||||
/// </summary>
|
||||
[Range(0.0, 99.0, ErrorMessage = "Проработка 2, Количество повторений, шт., должно быть в пределах от 0 до 99")]
|
||||
public int? Reaming2RepetitionsCount { get; set; }
|
||||
public int Reaming2RepetitionsCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Скорость, м/ч., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 2, Скорость, м/ч., Вверх, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming2RopUp { get; set; }
|
||||
public double Reaming2RopUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Скорость, м/ч., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 2, Скорость, м/ч., Вниз, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming2RopDown { get; set; }
|
||||
public double Reaming2RopDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Обороты, об/мин., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 2, Обороты, об/мин., Вверх, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming2RpmUp { get; set; }
|
||||
public double Reaming2RpmUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Обороты, об/мин., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 2, Обороты, об/мин., Вниз, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming2RpmDown { get; set; }
|
||||
public double Reaming2RpmDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Расход, л/с., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 2, Расход, л/с., Вверх, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming2FlowRateUp { get; set; }
|
||||
public double Reaming2FlowRateUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Расход, л/с., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 2, Расход, л/с., Вниз, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming2FlowRateDown { get; set; }
|
||||
public double Reaming2FlowRateDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 2, Интервал проработки, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 30.0, ErrorMessage = "Проработка 2, Интервал проработки, м., должно быть в пределах от 0 до 30")]
|
||||
public double? Reaming2Interval { get; set; }
|
||||
public double Reaming2Interval { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Остановка над забоем, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 10.0, ErrorMessage = "Остановка над забоем, м., должно быть в пределах от 0 до 10")]
|
||||
public double? Reaming2StopPointOffBottom { get; set; }
|
||||
public double Reaming2StopPointOffBottom { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Количество повторений, шт.
|
||||
@ -155,49 +155,49 @@ public class ProcessMapPlanReamingSlideDto : ProcessMapPlanBaseDto
|
||||
/// Проработка 3, Скорость, м/ч., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 3, Скорость, м/ч., Вверх, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming3RopUp { get; set; }
|
||||
public double Reaming3RopUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Скорость, м/ч., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 999.0, ErrorMessage = "Проработка 3, Скорость, м/ч., Вниз, должно быть в пределах от 0 до 999")]
|
||||
public double? Reaming3RopDown { get; set; }
|
||||
public double Reaming3RopDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Обороты, об/мин., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 3, Обороты, об/мин., Вверх, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming3RpmUp { get; set; }
|
||||
public double Reaming3RpmUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Обороты, об/мин., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 270.0, ErrorMessage = "Проработка 3, Обороты, об/мин., Вниз, должно быть в пределах от 0 до 270")]
|
||||
public double? Reaming3RpmDown { get; set; }
|
||||
public double Reaming3RpmDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Расход, л/с., Вверх
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 3, Расход, л/с., Вверх, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming3FlowRateUp { get; set; }
|
||||
public double Reaming3FlowRateUp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Расход, л/с., Вниз
|
||||
/// </summary>
|
||||
[Range(0.0, 100.0, ErrorMessage = "Проработка 3, Расход, л/с., Вниз, должно быть в пределах от 0 до 100")]
|
||||
public double? Reaming3FlowRateDown { get; set; }
|
||||
public double Reaming3FlowRateDown { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Проработка 3, Интервал проработки, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 30.0, ErrorMessage = "Проработка 3, Интервал проработки, м., должно быть в пределах от 0 до 30")]
|
||||
public double? Reaming3Interval { get; set; }
|
||||
public double Reaming3Interval { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Остановка над забоем, м.
|
||||
/// </summary>
|
||||
[Range(0.0, 10.0, ErrorMessage = "Остановка над забоем, м., должно быть в пределах от 0 до 10")]
|
||||
public double? Reaming3StopPointOffBottom { get; set; }
|
||||
public double Reaming3StopPointOffBottom { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Примечание
|
||||
|
12236
AsbCloudDb/Migrations/20240723055049_NotNullable_Fields_ProcessMapPlanReamingRotorAndSlide.Designer.cs
generated
Normal file
12236
AsbCloudDb/Migrations/20240723055049_NotNullable_Fields_ProcessMapPlanReamingRotorAndSlide.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,810 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace AsbCloudDb.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class NotNullable_Fields_ProcessMapPlanReamingRotorAndSlide : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming3_repetitions_count",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
comment: "Проработка 3, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_interval",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming2_repetitions_count",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
comment: "Проработка 2, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_interval",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming3_repetitions_count",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
comment: "Проработка 3, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_interval",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 3, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming2_repetitions_count",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
comment: "Проработка 2, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_interval",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0,
|
||||
comment: "Проработка 2, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldNullable: true,
|
||||
oldComment: "Проработка 2, Расход, л/с., Вниз");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming3_repetitions_count",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "integer",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldComment: "Проработка 3, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_interval",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming2_repetitions_count",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "integer",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldComment: "Проработка 2, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_interval",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_up",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_down",
|
||||
table: "t_process_map_plan_reaming_slide",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rpm_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_rop_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming3_repetitions_count",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "integer",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldComment: "Проработка 3, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_interval",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming3_flow_rate_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 3, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_stop_point_off_bottom",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Остановка над забоем, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Остановка над забоем, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rpm_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Обороты, об/мин., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_rop_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Скорость, м/ч., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "reaming2_repetitions_count",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "integer",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Количество повторений, шт.",
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldComment: "Проработка 2, Количество повторений, шт.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_interval",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Интервал проработки, м.",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Интервал проработки, м.");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_up",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Расход, л/с., Вверх",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "reaming2_flow_rate_down",
|
||||
table: "t_process_map_plan_operation_reaming_rotor",
|
||||
type: "double precision",
|
||||
nullable: true,
|
||||
comment: "Проработка 2, Расход, л/с., Вниз",
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision",
|
||||
oldComment: "Проработка 2, Расход, л/с., Вниз");
|
||||
}
|
||||
}
|
||||
}
|
@ -3805,92 +3805,92 @@ namespace AsbCloudDb.Migrations
|
||||
.HasColumnName("reaming1_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
|
||||
b.Property<double?>("Reaming2FlowRateDown")
|
||||
b.Property<double>("Reaming2FlowRateDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_flow_rate_down")
|
||||
.HasComment("Проработка 2, Расход, л/с., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2FlowRateUp")
|
||||
b.Property<double>("Reaming2FlowRateUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_flow_rate_up")
|
||||
.HasComment("Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2Interval")
|
||||
b.Property<double>("Reaming2Interval")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_interval")
|
||||
.HasComment("Проработка 2, Интервал проработки, м.");
|
||||
|
||||
b.Property<int?>("Reaming2RepetitionsCount")
|
||||
b.Property<int>("Reaming2RepetitionsCount")
|
||||
.HasColumnType("integer")
|
||||
.HasColumnName("reaming2_repetitions_count")
|
||||
.HasComment("Проработка 2, Количество повторений, шт.");
|
||||
|
||||
b.Property<double?>("Reaming2RopDown")
|
||||
b.Property<double>("Reaming2RopDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rop_down")
|
||||
.HasComment("Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2RopUp")
|
||||
b.Property<double>("Reaming2RopUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rop_up")
|
||||
.HasComment("Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2RpmDown")
|
||||
b.Property<double>("Reaming2RpmDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rpm_down")
|
||||
.HasComment("Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2RpmUp")
|
||||
b.Property<double>("Reaming2RpmUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rpm_up")
|
||||
.HasComment("Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2StopPointOffBottom")
|
||||
b.Property<double>("Reaming2StopPointOffBottom")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
|
||||
b.Property<double?>("Reaming3FlowRateDown")
|
||||
b.Property<double>("Reaming3FlowRateDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_flow_rate_down")
|
||||
.HasComment("Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3FlowRateUp")
|
||||
b.Property<double>("Reaming3FlowRateUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_flow_rate_up")
|
||||
.HasComment("Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3Interval")
|
||||
b.Property<double>("Reaming3Interval")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_interval")
|
||||
.HasComment("Проработка 3, Интервал проработки, м.");
|
||||
|
||||
b.Property<int?>("Reaming3RepetitionsCount")
|
||||
b.Property<int>("Reaming3RepetitionsCount")
|
||||
.HasColumnType("integer")
|
||||
.HasColumnName("reaming3_repetitions_count")
|
||||
.HasComment("Проработка 3, Количество повторений, шт.");
|
||||
|
||||
b.Property<double?>("Reaming3RopDown")
|
||||
b.Property<double>("Reaming3RopDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rop_down")
|
||||
.HasComment("Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3RopUp")
|
||||
b.Property<double>("Reaming3RopUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rop_up")
|
||||
.HasComment("Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3RpmDown")
|
||||
b.Property<double>("Reaming3RpmDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rpm_down")
|
||||
.HasComment("Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3RpmUp")
|
||||
b.Property<double>("Reaming3RpmUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rpm_up")
|
||||
.HasComment("Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3StopPointOffBottom")
|
||||
b.Property<double>("Reaming3StopPointOffBottom")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
@ -4049,92 +4049,92 @@ namespace AsbCloudDb.Migrations
|
||||
.HasColumnName("reaming1_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
|
||||
b.Property<double?>("Reaming2FlowRateDown")
|
||||
b.Property<double>("Reaming2FlowRateDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_flow_rate_down")
|
||||
.HasComment("Проработка 2, Расход, л/с., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2FlowRateUp")
|
||||
b.Property<double>("Reaming2FlowRateUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_flow_rate_up")
|
||||
.HasComment("Проработка 2, Расход, л/с., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2Interval")
|
||||
b.Property<double>("Reaming2Interval")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_interval")
|
||||
.HasComment("Проработка 2, Интервал проработки, м.");
|
||||
|
||||
b.Property<int?>("Reaming2RepetitionsCount")
|
||||
b.Property<int>("Reaming2RepetitionsCount")
|
||||
.HasColumnType("integer")
|
||||
.HasColumnName("reaming2_repetitions_count")
|
||||
.HasComment("Проработка 2, Количество повторений, шт.");
|
||||
|
||||
b.Property<double?>("Reaming2RopDown")
|
||||
b.Property<double>("Reaming2RopDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rop_down")
|
||||
.HasComment("Проработка 2, Скорость, м/ч., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2RopUp")
|
||||
b.Property<double>("Reaming2RopUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rop_up")
|
||||
.HasComment("Проработка 2, Скорость, м/ч., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2RpmDown")
|
||||
b.Property<double>("Reaming2RpmDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rpm_down")
|
||||
.HasComment("Проработка 2, Обороты, об/мин., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming2RpmUp")
|
||||
b.Property<double>("Reaming2RpmUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_rpm_up")
|
||||
.HasComment("Проработка 2, Обороты, об/мин., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming2StopPointOffBottom")
|
||||
b.Property<double>("Reaming2StopPointOffBottom")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming2_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
|
||||
b.Property<double?>("Reaming3FlowRateDown")
|
||||
b.Property<double>("Reaming3FlowRateDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_flow_rate_down")
|
||||
.HasComment("Проработка 3, Расход, л/с., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3FlowRateUp")
|
||||
b.Property<double>("Reaming3FlowRateUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_flow_rate_up")
|
||||
.HasComment("Проработка 3, Расход, л/с., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3Interval")
|
||||
b.Property<double>("Reaming3Interval")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_interval")
|
||||
.HasComment("Проработка 3, Интервал проработки, м.");
|
||||
|
||||
b.Property<int?>("Reaming3RepetitionsCount")
|
||||
b.Property<int>("Reaming3RepetitionsCount")
|
||||
.HasColumnType("integer")
|
||||
.HasColumnName("reaming3_repetitions_count")
|
||||
.HasComment("Проработка 3, Количество повторений, шт.");
|
||||
|
||||
b.Property<double?>("Reaming3RopDown")
|
||||
b.Property<double>("Reaming3RopDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rop_down")
|
||||
.HasComment("Проработка 3, Скорость, м/ч., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3RopUp")
|
||||
b.Property<double>("Reaming3RopUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rop_up")
|
||||
.HasComment("Проработка 3, Скорость, м/ч., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3RpmDown")
|
||||
b.Property<double>("Reaming3RpmDown")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rpm_down")
|
||||
.HasComment("Проработка 3, Обороты, об/мин., Вниз");
|
||||
|
||||
b.Property<double?>("Reaming3RpmUp")
|
||||
b.Property<double>("Reaming3RpmUp")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_rpm_up")
|
||||
.HasComment("Проработка 3, Обороты, об/мин., Вверх");
|
||||
|
||||
b.Property<double?>("Reaming3StopPointOffBottom")
|
||||
b.Property<double>("Reaming3StopPointOffBottom")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("reaming3_stop_point_off_bottom")
|
||||
.HasComment("Остановка над забоем, м.");
|
||||
|
@ -80,75 +80,93 @@ public class ProcessMapPlanReamingRotor : ProcessMapPlanBase
|
||||
|
||||
[Column("reaming2_repetitions_count"), Comment("Проработка 2, Количество повторений, шт.")]
|
||||
[Range(0, 99)]
|
||||
public int? Reaming2RepetitionsCount { get; set; }
|
||||
[Required]
|
||||
public int Reaming2RepetitionsCount { get; set; }
|
||||
|
||||
[Column("reaming2_rop_up"), Comment("Проработка 2, Скорость, м/ч., Вверх")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming2RopUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RopUp { get; set; }
|
||||
|
||||
[Column("reaming2_rop_down"), Comment("Проработка 2, Скорость, м/ч., Вниз")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming2RopDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RopDown { get; set; }
|
||||
|
||||
[Column("reaming2_rpm_up"), Comment("Проработка 2, Обороты, об/мин., Вверх")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming2RpmUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RpmUp { get; set; }
|
||||
|
||||
[Column("reaming2_rpm_down"), Comment("Проработка 2, Обороты, об/мин., Вниз")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming2RpmDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RpmDown { get; set; }
|
||||
|
||||
[Column("reaming2_flow_rate_up"), Comment("Проработка 2, Расход, л/с., Вверх")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming2FlowRateUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2FlowRateUp { get; set; }
|
||||
|
||||
[Column("reaming2_flow_rate_down"), Comment("Проработка 2, Расход, л/с., Вниз")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming2FlowRateDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2FlowRateDown { get; set; }
|
||||
|
||||
[Column("reaming2_interval"), Comment("Проработка 2, Интервал проработки, м.")]
|
||||
[Range(0.0, 30.0)]
|
||||
public double? Reaming2Interval { get; set; }
|
||||
[Required]
|
||||
public double Reaming2Interval { get; set; }
|
||||
|
||||
[Column("reaming2_stop_point_off_bottom"), Comment("Остановка над забоем, м.")]
|
||||
[Range(0.0, 10.0)]
|
||||
public double? Reaming2StopPointOffBottom { get; set; }
|
||||
[Required]
|
||||
public double Reaming2StopPointOffBottom { get; set; }
|
||||
|
||||
[Column("reaming3_repetitions_count"), Comment("Проработка 3, Количество повторений, шт.")]
|
||||
[Range(0, 99)]
|
||||
public int? Reaming3RepetitionsCount { get; set; }
|
||||
[Required]
|
||||
public int Reaming3RepetitionsCount { get; set; }
|
||||
|
||||
[Column("reaming3_rop_up"), Comment("Проработка 3, Скорость, м/ч., Вверх")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming3RopUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RopUp { get; set; }
|
||||
|
||||
[Column("reaming3_rop_down"), Comment("Проработка 3, Скорость, м/ч., Вниз")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming3RopDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RopDown { get; set; }
|
||||
|
||||
[Column("reaming3_rpm_up"), Comment("Проработка 3, Обороты, об/мин., Вверх")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming3RpmUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RpmUp { get; set; }
|
||||
|
||||
[Column("reaming3_rpm_down"), Comment("Проработка 3, Обороты, об/мин., Вниз")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming3RpmDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RpmDown { get; set; }
|
||||
|
||||
[Column("reaming3_flow_rate_up"), Comment("Проработка 3, Расход, л/с., Вверх")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming3FlowRateUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3FlowRateUp { get; set; }
|
||||
|
||||
[Column("reaming3_flow_rate_down"), Comment("Проработка 3, Расход, л/с., Вниз")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming3FlowRateDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3FlowRateDown { get; set; }
|
||||
|
||||
[Column("reaming3_interval"), Comment("Проработка 3, Интервал проработки, м.")]
|
||||
[Range(0.0, 30.0)]
|
||||
public double? Reaming3Interval { get; set; }
|
||||
[Required]
|
||||
public double Reaming3Interval { get; set; }
|
||||
|
||||
[Column("reaming3_stop_point_off_bottom"), Comment("Остановка над забоем, м.")]
|
||||
[Range(0.0, 10.0)]
|
||||
public double? Reaming3StopPointOffBottom { get; set; }
|
||||
[Required]
|
||||
public double Reaming3StopPointOffBottom { get; set; }
|
||||
|
||||
[Column("note"), Comment("Примечание"), StringLength(1024)]
|
||||
public string? Note { get; set; }
|
||||
|
@ -80,75 +80,93 @@ public class ProcessMapPlanReamingSlide : ProcessMapPlanBase
|
||||
|
||||
[Column("reaming2_repetitions_count"), Comment("Проработка 2, Количество повторений, шт.")]
|
||||
[Range(0.0, 99.0)]
|
||||
public int? Reaming2RepetitionsCount { get; set; }
|
||||
[Required]
|
||||
public int Reaming2RepetitionsCount { get; set; }
|
||||
|
||||
[Column("reaming2_rop_up"), Comment("Проработка 2, Скорость, м/ч., Вверх")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming2RopUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RopUp { get; set; }
|
||||
|
||||
[Column("reaming2_rop_down"), Comment("Проработка 2, Скорость, м/ч., Вниз")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming2RopDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RopDown { get; set; }
|
||||
|
||||
[Column("reaming2_rpm_up"), Comment("Проработка 2, Обороты, об/мин., Вверх")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming2RpmUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RpmUp { get; set; }
|
||||
|
||||
[Column("reaming2_rpm_down"), Comment("Проработка 2, Обороты, об/мин., Вниз")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming2RpmDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2RpmDown { get; set; }
|
||||
|
||||
[Column("reaming2_flow_rate_up"), Comment("Проработка 2, Расход, л/с., Вверх")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming2FlowRateUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming2FlowRateUp { get; set; }
|
||||
|
||||
[Column("reaming2_flow_rate_down"), Comment("Проработка 2, Расход, л/с., Вниз")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming2FlowRateDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming2FlowRateDown { get; set; }
|
||||
|
||||
[Column("reaming2_interval"), Comment("Проработка 2, Интервал проработки, м.")]
|
||||
[Range(0.0, 30.0)]
|
||||
public double? Reaming2Interval { get; set; }
|
||||
[Required]
|
||||
public double Reaming2Interval { get; set; }
|
||||
|
||||
[Column("reaming2_stop_point_off_bottom"), Comment("Остановка над забоем, м.")]
|
||||
[Range(0.0, 10.0)]
|
||||
public double? Reaming2StopPointOffBottom { get; set; }
|
||||
[Required]
|
||||
public double Reaming2StopPointOffBottom { get; set; }
|
||||
|
||||
[Column("reaming3_repetitions_count"), Comment("Проработка 3, Количество повторений, шт.")]
|
||||
[Range(0.0, 99.0)]
|
||||
public int? Reaming3RepetitionsCount { get; set; }
|
||||
[Required]
|
||||
public int Reaming3RepetitionsCount { get; set; }
|
||||
|
||||
[Column("reaming3_rop_up"), Comment("Проработка 3, Скорость, м/ч., Вверх")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming3RopUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RopUp { get; set; }
|
||||
|
||||
[Column("reaming3_rop_down"), Comment("Проработка 3, Скорость, м/ч., Вниз")]
|
||||
[Range(0.0, 999.0)]
|
||||
public double? Reaming3RopDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RopDown { get; set; }
|
||||
|
||||
[Column("reaming3_rpm_up"), Comment("Проработка 3, Обороты, об/мин., Вверх")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming3RpmUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RpmUp { get; set; }
|
||||
|
||||
[Column("reaming3_rpm_down"), Comment("Проработка 3, Обороты, об/мин., Вниз")]
|
||||
[Range(0.0, 270.0)]
|
||||
public double? Reaming3RpmDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3RpmDown { get; set; }
|
||||
|
||||
[Column("reaming3_flow_rate_up"), Comment("Проработка 3, Расход, л/с., Вверх")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming3FlowRateUp { get; set; }
|
||||
[Required]
|
||||
public double Reaming3FlowRateUp { get; set; }
|
||||
|
||||
[Column("reaming3_flow_rate_down"), Comment("Проработка 3, Расход, л/с., Вниз")]
|
||||
[Range(0.0, 100.0)]
|
||||
public double? Reaming3FlowRateDown { get; set; }
|
||||
[Required]
|
||||
public double Reaming3FlowRateDown { get; set; }
|
||||
|
||||
[Column("reaming3_interval"), Comment("Проработка 3, Интервал проработки, м.")]
|
||||
[Range(0.0, 30.0)]
|
||||
public double? Reaming3Interval { get; set; }
|
||||
[Required]
|
||||
public double Reaming3Interval { get; set; }
|
||||
|
||||
[Column("reaming3_stop_point_off_bottom"), Comment("Остановка над забоем, м.")]
|
||||
[Range(0.0, 10.0)]
|
||||
public double? Reaming3StopPointOffBottom { get; set; }
|
||||
[Required]
|
||||
public double Reaming3StopPointOffBottom { get; set; }
|
||||
|
||||
[Column("note"), Comment("Примечание"), StringLength(1024)]
|
||||
public string? Note { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user