Documentation ¶
Index ¶
- func EstateBookCreate(bookid, netconid, taxid, owner, addr string, area int, operator string) error
- func EstateBookUpdateCC(uuid string, iscced int) (err error)
- func EstateTaxCreate(taxid, taxer string, area, tax int, operator string) error
- func EstateTaxUpdateCC(uuid string, iscced int) (err error)
- func GetEngin(keys ...string) (e *xorm.Engine)
- func InitDB() error
- func NetconsCreate(netconid, applya, applyb, addr string, area, balance int, operator string) error
- func NetconsUpdateCC(uuid string, iscced int) (err error)
- func SetEngin(orm *xorm.Engine, keys ...string)
- type EstateBook
- type EstateTax
- type Netcon
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EstateBookCreate ¶
func EstateBookUpdateCC ¶
func EstateTaxCreate ¶
func EstateTaxUpdateCC ¶
func NetconsCreate ¶
func NetconsUpdateCC ¶
Types ¶
type EstateBook ¶
type EstateBook struct { ID string `xorm:"pk 'id'"` CreateDT time.Time //生成时间 BookID string //不动产证书编号 NetconID string //网签合同编号 TaxID string //纳税凭证编号 Owner string //户主 Addr string //房屋地址 Area int //房屋面积 Operator string //操作人员 IsCCed int //是否已上链 }
func EstateBookAll ¶
func EstateBookAll() (books []EstateBook, err error)
type EstateTax ¶
type EstateTax struct { ID string `xorm:"pk 'id'"` CreateDT time.Time //生成时间 TaxID string //核税编号 BookID string //不动产权证书编号 Taxer string //纳税人 Area int //房屋面积 Tax int //纳税金额 Operator string //操作人员 IsCCed int //是否已上链 }
func EstateTaxAll ¶
Click to show internal directories.
Click to hide internal directories.