kj_xjllb_jb.go 872 B

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