|
@@ -1,16 +1,15 @@
|
|
|
package dao
|
|
|
|
|
|
import (
|
|
|
- "github.com/shopspring/decimal"
|
|
|
"server/global"
|
|
|
)
|
|
|
|
|
|
type DailyFeeDetails struct {
|
|
|
global.GVA_MODEL
|
|
|
- DailyFeeId uint `json:"dailyFeeId" form:"dailyFeeId" gorm:"comment:日常费用id"`
|
|
|
- FeeTime string `json:"feeTime" form:"feeTime" gorm:"comment:日常费用期"`
|
|
|
- Illustrate string `json:"illustrate" form:"illustrate" gorm:"comment:费用说明"`
|
|
|
- FeePrice decimal.Decimal `json:"feePrice" form:"feePrice" gorm:"type:decimal(10,2);comment:报销金额"`
|
|
|
+ DailyFeeId uint `json:"dailyFeeId" form:"dailyFeeId" gorm:"comment:日常费用id"`
|
|
|
+ FeeTime string `json:"feeTime" form:"feeTime" gorm:"comment:日常费用期"`
|
|
|
+ Illustrate string `json:"illustrate" form:"illustrate" gorm:"comment:费用说明"`
|
|
|
+ FeePrice float64 `json:"feePrice" form:"feePrice" gorm:"type:decimal(10,2);comment:报销金额"`
|
|
|
}
|
|
|
|
|
|
func (DailyFeeDetails) TableName() string {
|