12345678910111213141516171819202122232425262728293031 |
- package sb
- type KjLrbTemplate struct {
- GsBaseModel
- KjMainID uint `json:"kjMainId"`
- Type int `json:"type"`
- Project string `json:"project"`
- YearTotal float64 `json:"yearTotal"`
- PeriodTotal float64 `json:"periodTotal"`
- }
- type KjLrb struct {
- GsBaseModel
- KjMainID uint `json:"kjMainId"`
- Project string `json:"project"`
- Type int `json:"type"`
- YearTotal float64 `json:"yearTotal"`
- PeriodTotal float64 `json:"periodTotal"`
- }
- type KjLrbMbf struct {
- GsBaseModel
- KjMainID uint `json:"kjMainId"`
- Project string `json:"project"`
- Type int `json:"type"`
- YearFxdxTotal float64 `json:"yearFxdxTotal"`
- YearXdxTotal float64 `json:"yearXdxTotal"`
- PeriodFxdxTotal float64 `json:"periodFxdxTotal"`
- PeriodXdxTotal float64 `json:"periodXdxTotal"`
- }
|