pay_credit_account.go 529 字节
package command

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

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