You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
package finance
|
|
|
|
import (
|
|
"github.com/shopspring/decimal"
|
|
"time"
|
|
)
|
|
|
|
type RecookFinanceSupplier struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
SupplierId uint // 供应商id
|
|
UnReceipt decimal.Decimal // 未开票金额
|
|
Receipt decimal.Decimal // 已开票金额
|
|
TotalReceipt decimal.Decimal // 累计金额
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|