12345678910111213141516 |
- package sb
- import (
- "time"
- )
- type KjXjllb struct {
- ID uint `json:"id" gorm:"primaryKey"` // old version is: gorm:"primary_key", TODO: 兼容旧的 有没有影响?
- CreatedAt time.Time `json:"createdAt"`
- UpdatedAt time.Time `json:"updatedAt"`
- KjMainID uint `json:"kjMainId"` //
- Type int `json:"type"` // 对应利润表行次
- Project string `json:"project"` //
- YearTotal float64 `json:"yearTotal"` // 核定比例
- PeriodTotal float64 `json:"periodTotal"` // 适用税率
- }
|