forked from ddrilling/AsbCloudServer
Fixed WellOperation Type & Date fields
This commit is contained in:
parent
d7e0eace47
commit
72510cbcf3
@ -16,7 +16,7 @@ namespace AsbCloudApp.Data
|
||||
|
||||
public string CategoryName { get; set; }
|
||||
|
||||
public string Type { get; set; }
|
||||
public int Type { get; set; }
|
||||
|
||||
public double WellDepth { get; set; }
|
||||
|
||||
|
@ -23,10 +23,10 @@ namespace AsbCloudDb.Model
|
||||
public int IdOperationCategory { get; set; }
|
||||
|
||||
[Column("type"), Comment("План или Факт")]
|
||||
public string Type { get; set; }
|
||||
public int Type { get; set; }
|
||||
|
||||
[Column("depth"), Comment("Глубина, на которой производилась операция")]
|
||||
public string WellDepth { get; set; }
|
||||
public double WellDepth { get; set; }
|
||||
|
||||
[Column("date"), Comment("Дата начала операции")]
|
||||
public DateTime StartDate { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user