pay_credit_account.go 574 字节
package command

import "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain"

type PayCreditAccountCommand struct {
	Operator           domain.Operator     `json:"-"`                      //操作人
	CreditAccountId    int                 `json:"creditAccountId,string"` //账期结算id
	ActuallyPaidAmount float64             `json:"actuallyPaidAmount"`     //实际金额
	Remarks            string              `json:"remarks"`                //备注
	Attachment         []domain.Attachment `json:"attachment"`             //附件
}