...
|
...
|
@@ -41,6 +41,7 @@ func (repository *CooperationContractRepository) Save(cooperationContract *domai |
|
|
"org",
|
|
|
"incentives_type",
|
|
|
"company",
|
|
|
"department",
|
|
|
"operator",
|
|
|
"operate_time",
|
|
|
"created_at",
|
...
|
...
|
@@ -74,6 +75,7 @@ func (repository *CooperationContractRepository) Save(cooperationContract *domai |
|
|
&cooperationContract.Org,
|
|
|
&cooperationContract.IncentivesType,
|
|
|
&cooperationContract.Company,
|
|
|
&cooperationContract.Department,
|
|
|
&cooperationContract.Operator,
|
|
|
&cooperationContract.OperateTime,
|
|
|
&cooperationContract.CreatedAt,
|
...
|
...
|
@@ -93,6 +95,7 @@ func (repository *CooperationContractRepository) Save(cooperationContract *domai |
|
|
cooperationContract.Org,
|
|
|
cooperationContract.IncentivesType,
|
|
|
cooperationContract.Company,
|
|
|
cooperationContract.Department,
|
|
|
cooperationContract.Operator,
|
|
|
cooperationContract.OperateTime,
|
|
|
cooperationContract.CreatedAt,
|
...
|
...
|
@@ -226,6 +229,7 @@ func (repository *CooperationContractRepository) Save(cooperationContract *domai |
|
|
&cooperationContract.Org,
|
|
|
&cooperationContract.IncentivesType,
|
|
|
&cooperationContract.Company,
|
|
|
&cooperationContract.Department,
|
|
|
&cooperationContract.Operator,
|
|
|
&cooperationContract.OperateTime,
|
|
|
&cooperationContract.CreatedAt,
|
...
|
...
|
@@ -245,6 +249,7 @@ func (repository *CooperationContractRepository) Save(cooperationContract *domai |
|
|
cooperationContract.Org,
|
|
|
cooperationContract.IncentivesType,
|
|
|
cooperationContract.Company,
|
|
|
cooperationContract.Department,
|
|
|
cooperationContract.Operator,
|
|
|
cooperationContract.OperateTime,
|
|
|
cooperationContract.CreatedAt,
|
...
|
...
|
@@ -670,6 +675,7 @@ func (repository *CooperationContractRepository) UpdateOne(cooperationContract * |
|
|
Status: cooperationContract.Status,
|
|
|
Org: cooperationContract.Org,
|
|
|
Company: cooperationContract.Company,
|
|
|
Department: cooperationContract.Department,
|
|
|
Operator: cooperationContract.Operator,
|
|
|
OperateTime: cooperationContract.OperateTime,
|
|
|
CreatedAt: cooperationContract.CreatedAt,
|
...
|
...
|
@@ -698,6 +704,7 @@ func (repository *CooperationContractRepository) UpdateMany(cooperationContracts |
|
|
Status: cooperationContract.Status,
|
|
|
Org: cooperationContract.Org,
|
|
|
Company: cooperationContract.Company,
|
|
|
Department: cooperationContract.Department,
|
|
|
Operator: cooperationContract.Operator,
|
|
|
OperateTime: cooperationContract.OperateTime,
|
|
|
CreatedAt: cooperationContract.CreatedAt,
|
...
|
...
|
|