contract_undertaker_feedback.go 2.2 KB
package domain

import "time"

// ContractUndertakerFeedback 承接人反馈信息
type ContractUndertakerFeedback struct {
	// 合约承接方反馈记录ID
	FeedbackId int64 `json:"feedbackId,string"`
	// 合约承接方反馈内容附件
	FeedbackAttachment []*Attachment `json:"feedbackAttachment"`
	// 合约承接方反馈内容
	FeedbackContent string `json:"feedbackContent"`
	// 共创合约编号
	CooperationContractNumber string `json:"cooperationContractNumber"`
	// 项目合约名称
	CooperationContractName string `json:"cooperationContractName"`
	// 共创模式名称
	CooperationModeName string `json:"cooperationModeName"`
	// 共创合约承接人
	ContractUndertaker *Undertaker `json:"contractUndertaker"`
	// 数据所属组织机构
	Org *Org `json:"org"`
	// 公司
	Company *Company `json:"company"`
	// 更新时间
	UpdatedAt time.Time `json:"updatedAt"`
	// 删除时间
	DeletedAt time.Time `json:"deletedAt"`
	// 反馈创建时间,同时也作为反馈时间
	CreatedAt time.Time `json:"createdAt"`
}

type ContractUndertakerFeedbackRepository interface {
	Save(contractUndertakerFeedback *ContractUndertakerFeedback) (*ContractUndertakerFeedback, error)
	Remove(contractUndertakerFeedback *ContractUndertakerFeedback) (*ContractUndertakerFeedback, error)
	FindOne(queryOptions map[string]interface{}) (*ContractUndertakerFeedback, error)
	Find(queryOptions map[string]interface{}) (int64, []*ContractUndertakerFeedback, error)
}

func (contractUndertakerFeedback *ContractUndertakerFeedback) Identify() interface{} {
	if contractUndertakerFeedback.FeedbackId == 0 {
		return nil
	}
	return contractUndertakerFeedback.FeedbackId
}

func (contractUndertakerFeedback *ContractUndertakerFeedback) Update(data map[string]interface{}) error {
	if feedbackAttachment, ok := data["feedbackAttachment"]; ok {
		contractUndertakerFeedback.FeedbackAttachment = feedbackAttachment.([]*Attachment)
	}
	if feedbackContent, ok := data["feedbackContent"]; ok {
		contractUndertakerFeedback.FeedbackContent = feedbackContent.(string)
	}
	if cooperationContractNumber, ok := data["cooperationContractNumber"]; ok {
		contractUndertakerFeedback.CooperationContractNumber = cooperationContractNumber.(string)
	}
	contractUndertakerFeedback.UpdatedAt = time.Now()
	return nil
}