...
|
...
|
@@ -42,6 +42,7 @@ func (repository *DividendsEstimateRepository) Save(dividendsEstimate *domain.Di |
|
|
"company",
|
|
|
"operator",
|
|
|
"operate_time",
|
|
|
"is_canceled",
|
|
|
"created_at",
|
|
|
"deleted_at",
|
|
|
"updated_at",
|
...
|
...
|
@@ -76,6 +77,7 @@ func (repository *DividendsEstimateRepository) Save(dividendsEstimate *domain.Di |
|
|
÷ndsEstimate.Company,
|
|
|
÷ndsEstimate.Operator,
|
|
|
÷ndsEstimate.OperateTime,
|
|
|
÷ndsEstimate.IsCanceled,
|
|
|
÷ndsEstimate.CreatedAt,
|
|
|
÷ndsEstimate.DeletedAt,
|
|
|
÷ndsEstimate.UpdatedAt,
|
...
|
...
|
@@ -96,8 +98,9 @@ func (repository *DividendsEstimateRepository) Save(dividendsEstimate *domain.Di |
|
|
dividendsEstimate.Company,
|
|
|
dividendsEstimate.Operator,
|
|
|
dividendsEstimate.OperateTime,
|
|
|
dividendsEstimate.IsCanceled,
|
|
|
dividendsEstimate.CreatedAt,
|
|
|
dividendsEstimate.DeletedAt,
|
|
|
nil,
|
|
|
dividendsEstimate.UpdatedAt,
|
|
|
); err != nil {
|
|
|
return dividendsEstimate, err
|
...
|
...
|
@@ -120,6 +123,7 @@ func (repository *DividendsEstimateRepository) Save(dividendsEstimate *domain.Di |
|
|
÷ndsEstimate.Company,
|
|
|
÷ndsEstimate.Operator,
|
|
|
÷ndsEstimate.OperateTime,
|
|
|
÷ndsEstimate.IsCanceled,
|
|
|
÷ndsEstimate.CreatedAt,
|
|
|
÷ndsEstimate.DeletedAt,
|
|
|
÷ndsEstimate.UpdatedAt,
|
...
|
...
|
@@ -140,8 +144,9 @@ func (repository *DividendsEstimateRepository) Save(dividendsEstimate *domain.Di |
|
|
dividendsEstimate.Company,
|
|
|
dividendsEstimate.Operator,
|
|
|
dividendsEstimate.OperateTime,
|
|
|
dividendsEstimate.IsCanceled,
|
|
|
dividendsEstimate.CreatedAt,
|
|
|
dividendsEstimate.DeletedAt,
|
|
|
nil,
|
|
|
dividendsEstimate.UpdatedAt,
|
|
|
dividendsEstimate.Identify(),
|
|
|
); err != nil {
|
...
|
...
|
|