债券
Bond
```
type Bond struct {
Account string `json:"account"` // 债券账户
HouseID uint `json:"house_id"` // 房屋ID
BondNo string `json:"bond_no"` // 债券编号
Title string `json:"title"` // 债券名
Currency string `json:"currency"` // 债券价值单位
State typedef.BondState `json:"state"` // 债券状态
Category typedef.BondType `json:"category"` // 债券类型
BonusTime int `json:"bonus_time"` // 债券分红周期
BonusTimeUnit string `json:"bonus_time_unit"` // 债券分红周期单位
BonusDate string `json:"bonus_date"` // 债券分红日期
SellPrice string `json:"sell_price"` // 售价
RedeemPrice string `json:"redeem_price"` // 赎回价格
StartSellShare string `json:"start_sell_share"` // 起售份额
MinStepShare string `json:"min_step_share"` // 最小递增额
TotalShare string `json:"total_share"` // 总份额
RestShare string `json:"rest_share"` // 剩余份额
SupportPay []string `json:"support_pay"` // 支持支付方式
PublishTime int64 `json:"publish_time"` // 发布时间
StartTime int64 `json:"start_time"` // 开始时间
EndTime int64 `json:"end_time,omitempty"` // 结束时间
Icon File `json:"icon"` // 债券图标
}
```