kj_xjllb.go 551 B

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