> # 送轉分紅
- 接口地址: http://域名/data/v3/reprice/factor
> 請求參數(Post請求)
```
type reqRepriceFactor struct {
Symbol string //證券代碼(多個逗號分隔)
StartTime int64 //開始時間
EndTime int64 //結束時間
}
```
> 響應參數
- 返回16進制的ArrowTable數據
- 字段說明參考 紅楹數據庫(財經數據版)2.1.6.2.3 分配除權表(新)(STK\_MKT\_DividentNEW)
```
type StkMktDividentnew struct {
SECURITYID float64 `gorm:"column:SECURITYID;type:float8" json:"sec_uri_ty_id"`
EXDIVIDENDDATE int64 `gorm:"column:EXDIVIDENDDATE;type:timestamp" json:"exdiv_id_enddate"`
DECLAREDATE intt64 `gorm:"column:DECLAREDATE;type:timestamp" json:"declaredate"`
SYMBOL string `gorm:"column:SYMBOL;type:varchar(6)" json:"symbol"`
RECORDDATE int64 `gorm:"column:RECORDDATE;type:timestamp" json:"recorddate"`
FINALTRADINGDATE int64 `gorm:"column:FINALTRADINGDATE;type:timestamp" json:"finaltradingdate"`
PAYMENTDATE int64 `gorm:"column:PAYMENTDATE;type:timestamp" json:"paymentdate"`
CURRENCYCODE string `gorm:"column:CURRENCYCODE;type:varchar(20)" json:"currencycode"`
ALLOTMENTPRICE float64 `gorm:"column:ALLOTMENTPRICE;type:float8" json:"allotmentprice"`
ALLOTMENTPERSHARE float64 `gorm:"column:ALLOTMENTPERSHARE;type:float8" json:"allotmentpershare"`
DIVIDENTBT float64 `gorm:"column:DIVIDENTBT;type:float8" json:"div_id_entbt"`
DIVIDENTAT float64 `gorm:"column:DIVIDENTAT;type:float8" json:"div_id_entat"`
BONUSRATIO float64 `gorm:"column:BONUSRATIO;type:float8" json:"bonusratio"`
SPLITRATIO float64 `gorm:"column:SPLITRATIO;type:float8" json:"splitratio"`
UPDATEID int64 `gorm:"column:UPDATEID;type:int8" json:"update_id"`
UPDATESTATE int32 `gorm:"column:UPDATESTATE;type:int2" json:"updatestate"`
UPDATETIME int64 `gorm:"column:UPDATETIME;type:timestamp" json:"updatetime"`
BUSINESSTIME intt64 `gorm:"column:BUSINESSTIME;type:timestamp" json:"businesstime"`
UTSID float64 `gorm:"column:UTSID;type:float8" json:"uts_id"`
LISTEDDATE tint64 `gorm:"column:LISTEDDATE;type:timestamp" json:"listeddate"`
INSTITUTIONID float64 `gorm:"column:INSTITUTIONID;type:float8" json:"institution_id"`
}
```