| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- // Package models 211.3 风险管理系统2020_现货合同
- package models
- import (
- "mtp2_if/db"
- "time"
- )
- // Erms3Spotcontractdetail 合同标的明细表
- type Erms3Spotcontractdetail struct {
- Spotdetailid string `json:"spotdetailid" xorm:"SPOTDETAILID"` // 标的明细ID(346+Unix秒时间戳(10位)+xxxxxx)
- Spotcontractid string `json:"spotcontractid" xorm:"SPOTCONTRACTID"` // 现货合同ID
- Wrstandardid int64 `json:"wrstandardid" xorm:"WRSTANDARDID"` // 仓单标准ID
- Deliverygoodsid int64 `json:"deliverygoodsid" xorm:"DELIVERYGOODSID"` // 现货品种ID
- Tradedate string `json:"tradedate" xorm:"TRADEDATE"` // 交易日(yyyyMMdd)
- Contracttype int32 `json:"contracttype" xorm:"CONTRACTTYPE"` // 现货合同类型 - 1:采购 -1:销售
- Accountid int64 `json:"accountid" xorm:"ACCOUNTID"` // 资金账户ID
- Customeraccountid int64 `json:"customeraccountid" xorm:"CUSTOMERACCOUNTID"` // 客户资金账户ID
- Producttype int32 `json:"producttype" xorm:"PRODUCTTYPE"` // 产品类型 - 1:标准仓单 2:等标 3:非标
- Deliverygoodsdesc string `json:"deliverygoodsdesc" xorm:"DELIVERYGOODSDESC"` // 产品规格 - 根据此字段生成仓单标准、仓单要素类型
- Warehouseid int64 `json:"warehouseid" xorm:"WAREHOUSEID"` // 仓库ID
- Pointdesc string `json:"pointdesc" xorm:"POINTDESC"` // 点价描述
- Priceqty float64 `json:"priceqty" xorm:"PRICEQTY"` // 指定价类总量
- Pointqty float64 `json:"pointqty" xorm:"POINTQTY"` // 点价类总量
- Unpricedqty float64 `json:"unpricedqty" xorm:"UNPRICEDQTY"` // 未确定量
- Unpricedrelatedqty float64 `json:"unpricedrelatedqty" xorm:"UNPRICEDRELATEDQTY"` // 未确定量关联量
- Unpricedavaliableqty float64 `json:"unpricedavaliableqty" xorm:"UNPRICEDAVALIABLEQTY"` // 未确定量可关联量
- Unpricedcancelledqty float64 `json:"unpricedcancelledqty" xorm:"UNPRICEDCANCELLEDQTY"` // 未确定量撤销量(非业务)
- Pricedqty float64 `json:"pricedqty" xorm:"PRICEDQTY"` // 确定量
- Pricedamount float64 `json:"pricedamount" xorm:"PRICEDAMOUNT"` // 确定金额
- Pricedrelatedqty float64 `json:"pricedrelatedqty" xorm:"PRICEDRELATEDQTY"` // 确定量关联量
- Pricedavaliableqty float64 `json:"pricedavaliableqty" xorm:"PRICEDAVALIABLEQTY"` // 确定量可关联量
- Pricedcancelledqty float64 `json:"pricedcancelledqty" xorm:"PRICEDCANCELLEDQTY"` // 确定量撤销量(非业务)
- Pricedcancelledamount float64 `json:"pricedcancelledamount" xorm:"PRICEDCANCELLEDAMOUNT"` // 确定量撤销金额(非业务)
- Deliveryqty float64 `json:"deliveryqty" xorm:"DELIVERYQTY"` // 交收数量(非业务)
- Deliveryamount float64 `json:"deliveryamount" xorm:"DELIVERYAMOUNT"` // 交收金额(非业务)
- Deliveryovershortqty float64 `json:"deliveryovershortqty" xorm:"DELIVERYOVERSHORTQTY"` // 交收溢短数量(非业务)
- Deliveryactualamount float64 `json:"deliveryactualamount" xorm:"DELIVERYACTUALAMOUNT"` // 交收实际金额(非业务)
- Deliveryotheramount float64 `json:"deliveryotheramount" xorm:"DELIVERYOTHERAMOUNT"` // 交收其它费用(非业务)
- Curdeliveryqty float64 `json:"curdeliveryqty" xorm:"CURDELIVERYQTY"` // 剩余交收数量
- Curdeliveryamount float64 `json:"curdeliveryamount" xorm:"CURDELIVERYAMOUNT"` // 剩余交收金额
- Remark string `json:"remark" xorm:"REMARK"` // 备注
- Marketid int64 `json:"marketid" xorm:"MARKETID"` // 市场ID
- Handlestatus int32 `json:"handlestatus" xorm:"HANDLESTATUS"` // 处理状态
- Updatetime time.Time `json:"updatetime" xorm:"UPDATETIME"` // 更新时间
- Reckonedamount float64 `json:"reckonedamount" xorm:"RECKONEDAMOUNT"` // 已结金额
- Invoicedamount float64 `json:"invoicedamount" xorm:"INVOICEDAMOUNT"` // 已开票金额
- }
- // TableName is ERMS3_SPOTCONTRACTDETAIL
- func (Erms3Spotcontractdetail) TableName() string {
- return "ERMS3_SPOTCONTRACTDETAIL"
- }
- // Erms3SpotContractInfo 合同明细.
- type Erms3SpotContractInfo struct {
- Erms3Spotcontractdetail `xorm:"extends"`
- Areauserid int64 `json:"areauserid" xorm:"AREAUSERID"` // 所属机构
- Accountid int64 `json:"accountid" xorm:"ACCOUNTID"` // 资金账户ID
- Customeruserid int64 `json:"customeruserid" xorm:"CUSTOMERUSERID"` // 客户ID
- Customeraccountid int64 `json:"customeraccountid" xorm:"CUSTOMERACCOUNTID"` // 客户资金账户ID
- Signdate time.Time `json:"signdate" xorm:"SIGNDATE"` // 签订日期
- Closestatus int32 `json:"closestatus" xorm:"CLOSESTATUS"` // 完结状态 - 0:未完结 1:已完结
- Relatedbizid string `json:"relatedbizid" xorm:"RELATEDBIZID"` // 关联业务ID
- Goodunit string `json:"goodunit" xorm:"'GOODUNIT'"` // 报价单位
- Wrstandardcode string `json:"wrstandardcode" xorm:"'WRSTANDARDCODE'"` // 仓单标准代码
- Wrstandardname string `json:"wrstandardname" xorm:"'WRSTANDARDNAME'"` // 仓单标准名称
- Deliverygoodscode string `json:"deliverygoodscode" xorm:"'DELIVERYGOODSCODE'"` // 交割商品代码
- Deliverygoodsname string `json:"deliverygoodsname" xorm:"'DELIVERYGOODSNAME'"` // 交割商品名称
- }
- // Erms3SpotContractApply 现货合同申请表
- type Erms3SpotContractApply struct {
- SpotContractID int64 `json:"spotcontractid" xorm:"'SPOTCONTRACTID'" binging:"required"` // 现货合同ID(345+Unix秒时间戳(10位)+xxxxxx)
- TradeDate string `json:"tradedate" xorm:"'TRADEDATE'"` // 交易日(yyyyMMdd)
- ContractNo string `json:"contractno" xorm:"'CONTRACTNO'"` // 现货合同编号
- ContractType int32 `json:"contracttype" xorm:"'CONTRACTTYPE'"` // 现货合同类型 - 1:采购 -1:销售
- AreaUserID int32 `json:"areauserid" xorm:"'AREAUSERID'"` // 所属机构
- AccountID int64 `json:"accountid" xorm:"'ACCOUNTID'"` // 资金账户ID
- CustomerUserID int32 `json:"customeruserid" xorm:"'CUSTOMERUSERID'"` // 客户ID
- CustomerAccountID int64 `json:"customeraccountid" xorm:"'CUSTOMERACCOUNTID'"` // 客户资金账户ID
- SignDate string `json:"signdate" xorm:"'SIGNDATE'"` // 签订日期
- LastDate string `json:"lastdate" xorm:"'LASTDATE'"` // 交货时间
- ContractAttachment string `json:"contractattachment" xorm:"'CONTRACTATTACHMENT'"` // 合同附件
- OriMarginPayer int32 `json:"orimarginpayer" xorm:"'ORIMARGINPAYER'"` // 初始保证金支付方 -1:买方 2:卖方
- OriMargin float64 `json:"orimargin" xorm:"'ORIMARGIN'"` // 初始保证金
- Remark string `json:"remark" xorm:"'REMARK'"` // 备注
- DetailJSON string `json:"detailjson" xorm:"'DETAILJSON'"` // 明细JSON
- ApplyStatus int32 `json:"applystatus" xorm:"'APPLYSTATUS'"` // 申请状态 - 0:未审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝
- ApplySrc int32 `json:"applysrc" xorm:"'APPLYSRC'"` // 申请来源 - 1:管理端 2:终端
- MarketID int32 `json:"marketid" xorm:"'MARKETID'"` // 市场ID
- CreatorID int32 `json:"creatorid" xorm:"'CREATORID'"` // 申请人
- CreateTime time.Time `json:"createtime" xorm:"'CREATETIME'"` // 申请时间
- AuditID int32 `json:"auditid" xorm:"'AUDITID'"` // 审核人
- AuditTime time.Time `json:"audittime" xorm:"'AUDITTIME'"` // 审核时间
- AuditRemark string `json:"auditremark" xorm:"'AUDITREMARK'"` // 审核备注
- }
- // TableName is ERMS3_SPOTCONTRACTAPPLY
- func (Erms3SpotContractApply) TableName() string {
- return "ERMS3_SPOTCONTRACTAPPLY"
- }
- // Erms3Biztradedetail 业务关联单据明细表
- type Erms3Biztradedetail struct {
- Biztradedetailid int64 `json:"biztradedetailid" xorm:"BIZTRADEDETAILID"` // 业务关联单据明细ID(352+Unix秒时间戳(10位)+xxxxxx)
- Tradedetailid int64 `json:"tradedetailid" xorm:"TRADEDETAILID"` // 单据明细ID
- Relatedbiztype int32 `json:"relatedbiztype" xorm:"RELATEDBIZTYPE"` // 关联业务类型 - 1:期现套利 2:仓单回购 3:现货贸易
- Relatedbizid int64 `json:"relatedbizid" xorm:"RELATEDBIZID"` // 关联业务ID
- Marketid int64 `json:"marketid" xorm:"MARKETID"` // 业务市场ID
- Spotdetailid int64 `json:"spotdetailid" xorm:"SPOTDETAILID"` // 标的明细ID
- Spotcontractid int64 `json:"spotcontractid" xorm:"SPOTCONTRACTID"` // 现货合同ID
- Contracttype int32 `json:"contracttype" xorm:"CONTRACTTYPE"` // 现货合同类型 - 1:采购 -1:销售
- Bizaccountid int64 `json:"bizaccountid" xorm:"BIZACCOUNTID"` // 业务现货资金账户
- Contractaccountid int64 `json:"contractaccountid" xorm:"CONTRACTACCOUNTID"` // 现货合同资金账户
- Tradedate string `json:"tradedate" xorm:"TRADEDATE"` // 交易日(yyyyMMdd)
- Relatedqty float64 `json:"relatedqty" xorm:"RELATEDQTY"` // 关联数量
- Relatedamount float64 `json:"relatedamount" xorm:"RELATEDAMOUNT"` // 关联金额
- Cancelledqty float64 `json:"cancelledqty" xorm:"CANCELLEDQTY"` // 撤销量
- Cancelledamount float64 `json:"cancelledamount" xorm:"CANCELLEDAMOUNT"` // 撤销金额
- Deliveryqty float64 `json:"deliveryqty" xorm:"DELIVERYQTY"` // 交收数量(业务)
- Deliveryamount float64 `json:"deliveryamount" xorm:"DELIVERYAMOUNT"` // 交收金额(业务) - 按比例计算
- Deliveryovershortqty float64 `json:"deliveryovershortqty" xorm:"DELIVERYOVERSHORTQTY"` // 交收溢短数量(业务)
- Deliveryactualamount float64 `json:"deliveryactualamount" xorm:"DELIVERYACTUALAMOUNT"` // 交收实际金额(业务)
- Deliveryotheramount float64 `json:"deliveryotheramount" xorm:"DELIVERYOTHERAMOUNT"` // 交收其它费用(业务)
- Closestatus int32 `json:"closestatus" xorm:"CLOSESTATUS"` // 完结状态 - 0:未完结 1:已完结
- Closetradedate string `json:"closetradedate" xorm:"CLOSETRADEDATE"` // 完结交易日(yyyyMMdd)
- Updatetime time.Time `json:"updatetime" xorm:"UPDATETIME"` // 更新时间
- Handlestatus int32 `json:"handlestatus" xorm:"HANDLESTATUS"` // 处理状态
- }
- // TableName is ERMS3_BIZTRADEDETAIL
- func (m *Erms3Biztradedetail) TableName() string {
- return "ERMS3_BIZTRADEDETAIL"
- }
- // Erms2asapply 期现套利业务申请表
- type Erms2asapply struct {
- Asapplyid int64 `json:"asapplyid" xorm:"'ASAPPLYID'" binding:"required"` // 策略申请ID(342+Unix秒时间戳(10位)+xxxxxx)
- Asno string `json:"asno" xorm:"'ASNO'"` // 策略编号
- Asname string `json:"asname" xorm:"'ASNAME'"` // 策略名称
- Biztype int32 `json:"biztype" xorm:"'BIZTYPE'"` // 业务类型 - 1:正向套利 2:反向套利
- Userid int64 `json:"userid" xorm:"'USERID'"` // 所属机构
- Deliverygoodsid int64 `json:"deliverygoodsid" xorm:"'DELIVERYGOODSID'"` // 现货品种ID
- Goodsgroupid int64 `json:"goodsgroupid" xorm:"'GOODSGROUPID'"` // 期货品种ID
- Spotquota float64 `json:"spotquota" xorm:"'SPOTQUOTA'"` // 现货额度
- Futurequote float64 `json:"futurequote" xorm:"'FUTUREQUOTE'"` // 期货额度
- Applybasis float64 `json:"applybasis" xorm:"'APPLYBASIS'"` // 申请基差
- Applystatus int32 `json:"applystatus" xorm:"'APPLYSTATUS'"` // 申请状态 - 0:待审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝
- Remark string `json:"remark" xorm:"'REMARK'"` // 备注
- Marketid int64 `json:"marketid" xorm:"'MARKETID'"` // 市场ID
- Tradedate string `json:"tradedate" xorm:"'TRADEDATE'"` // 交易日(yyyyMMdd)
- Creatorid int64 `json:"creatorid" xorm:"'CREATORID'"` // 创建人
- Createtime string `json:"createtime" xorm:"'CREATETIME'"` // 创建时间
- Auditid int64 `json:"auditid" xorm:"'AUDITID'"` // 审核人
- Audittime string `json:"audittime" xorm:"'AUDITTIME'"` // 审核时间
- Auditremark string `json:"auditremark" xorm:"'AUDITREMARK'"` // 审核备注
- }
- // TableName is ERMS2_ASAPPLY
- func (Erms2asapply) TableName() string {
- return "ERMS2_ASAPPLY"
- }
- // Erms2spottradeapply 现货贸易业务申请表
- type Erms2spottradeapply struct {
- Spottradeid int64 `json:"spottradeid" xorm:"'SPOTTRADEID'" binding:"required"` // 业务ID(341+Unix秒时间戳(10位)+xxxxxx)
- Spottradeno string `json:"spottradeno" xorm:"'SPOTTRADENO'"` // 业务编号
- Spottradename string `json:"spottradename" xorm:"'SPOTTRADENAME'"` // 业务名称
- Areauserid int64 `json:"areauserid" xorm:"'AREAUSERID'"` // 所属机构
- Deliverygoodsid int64 `json:"deliverygoodsid" xorm:"'DELIVERYGOODSID'"` // 现货品种ID
- Wrstandardid int64 `json:"wrstandardid" xorm:"'WRSTANDARDID'"` // 仓单标准ID
- Goodsgroupid int32 `json:"goodsgroupid" xorm:"'GOODSGROUPID'"` // 期货品种
- Spotaccountid int64 `json:"spotaccountid" xorm:"'SPOTACCOUNTID'"` // 现货资金账户
- Futureaccountid int64 `json:"futureaccountid" xorm:"'FUTUREACCOUNTID'"` // 期货资金账户
- Remark string `json:"remark" xorm:"'REMARK'"` // 备注
- Applyjsondetail string `json:"applyjsondetail" xorm:"'APPLYJSONDETAIL'"` // 申请明细(JSON)
- Applystatus int32 `json:"applystatus" xorm:"'APPLYSTATUS'"` // 申请状态 - 0:待审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝
- Marketid int64 `json:"marketid" xorm:"'MARKETID'"` // 市场ID
- Tradedate string `json:"tradedate" xorm:"'TRADEDATE'"` // 交易日(yyyyMMdd)
- Creatorid int64 `json:"creatorid" xorm:"'CREATORID'"` // 创建人
- Createtime string `json:"createtime" xorm:"'CREATETIME'"` // 创建时间
- Auditid int64 `json:"auditid" xorm:"'AUDITID'"` // 审核人
- Audittime string `json:"audittime" xorm:"'AUDITTIME'"` // 审核时间
- Auditremark string `json:"auditremark" xorm:"'AUDITREMARK'"` // 审核备注
- }
- // TableName is ERMS2_SPOTTRADEAPPLY
- func (Erms2spottradeapply) TableName() string {
- return "ERMS2_SPOTTRADEAPPLY"
- }
- // AddSpotContractApply 插入现货合同记录
- func AddSpotContractApply(spotContractApply Erms3SpotContractApply) error {
- engine := db.GetEngine()
- // 组织sql,插入现货合同申请信息
- sql := `INSERT INTO ERMS3_SPOTCONTRACTAPPLY(SPOTCONTRACTID,
- TRADEDATE,
- CONTRACTNO,
- CONTRACTTYPE,
- AREAUSERID,
- ACCOUNTID,
- CUSTOMERUSERID,
- CUSTOMERACCOUNTID,
- SIGNDATE,
- CONTRACTATTACHMENT,
- ORIMARGIN,
- REMARK,
- DETAILJSON,
- APPLYSTATUS,
- APPLYSRC,
- CREATORID,
- CREATETIME)
- VALUES(?,
- ?,
- ?,
- ?,
- ?,
- ?,
- ?,
- ?,
- to_date(?, 'YYYY-MM-DD HH24:MI:SS'),
- ?,
- ?,
- ?,
- ?,
- ?,
- ?,
- ?,
- sysdate)`
- _, err := engine.Exec(sql,
- spotContractApply.SpotContractID,
- spotContractApply.TradeDate,
- spotContractApply.ContractNo,
- spotContractApply.ContractType,
- spotContractApply.AreaUserID,
- spotContractApply.AccountID,
- spotContractApply.CustomerUserID,
- spotContractApply.CustomerAccountID,
- spotContractApply.SignDate,
- spotContractApply.ContractAttachment,
- spotContractApply.OriMargin,
- spotContractApply.Remark,
- spotContractApply.DetailJSON,
- spotContractApply.ApplyStatus,
- spotContractApply.ApplySrc,
- spotContractApply.CreatorID)
- return err
- }
- // QueryErms3SpotContractInfo 查询现货合同信息
- func QueryErms3SpotContractInfo(accountids []int64, contracttype, contractmode, status int32) ([]Erms3SpotContractInfo, error) {
- datas := make([]Erms3SpotContractInfo, 0)
- engine := db.GetEngine()
- s := engine.Table("ERMS3_SPOTCONTRACTDETAIL").
- Join("LEFT", "ERMS3_SPOTCONTRACT", "ERMS3_SPOTCONTRACTDETAIL.SPOTCONTRACTID = ERMS3_SPOTCONTRACT.SPOTCONTRACTID").
- Join("LEFT", "ERMS3_BIZTRADEDETAIL", "ERMS3_BIZTRADEDETAIL.SPOTDETAILID = ERMS3_SPOTCONTRACTDETAIL.SPOTDETAILID").
- Join("LEFT", "WRSTANDARD", "WRSTANDARD.WRSTANDARDID = ERMS3_SPOTCONTRACTDETAIL.WRSTANDARDID").
- Join("LEFT", "DELIVERYGOODS", "DELIVERYGOODS.DELIVERYGOODSID = WRSTANDARD.DELIVERYGOODSID").
- Join("LEFT", "ENUMDICITEM", "WRSTANDARD.UNITID = ENUMDICITEM.ENUMITEMNAME AND ENUMDICITEM.ENUMDICCODE = 'goodsunit'").
- Select(`to_char(ERMS3_SPOTCONTRACTDETAIL.SPOTCONTRACTID) SPOTCONTRACTID, ERMS3_SPOTCONTRACT.AREAUSERID, ERMS3_SPOTCONTRACT.ACCOUNTID, ERMS3_SPOTCONTRACT.CUSTOMERUSERID,
- ERMS3_SPOTCONTRACT.CUSTOMERACCOUNTID, ERMS3_SPOTCONTRACT.CLOSESTATUS, ERMS3_SPOTCONTRACT.SIGNDATE, ERMS3_SPOTCONTRACTDETAIL.*, WRSTANDARD.WRSTANDARDNAME, WRSTANDARD.WRSTANDARDCODE, DELIVERYGOODS.DELIVERYGOODSNAME, DELIVERYGOODS.DELIVERYGOODSCODE,
- to_char(ERMS3_BIZTRADEDETAIL.RELATEDBIZID) RELATEDBIZID, ENUMDICITEM.ENUMDICNAME GOODUNIT`).
- Where("ERMS3_SPOTCONTRACT.CONTRACTTYPE = ? AND ERMS3_SPOTCONTRACT.CONTRACTMODE = ? AND ERMS3_SPOTCONTRACT.CLOSESTATUS = ?", contracttype, contractmode, status).
- In("ERMS3_SPOTCONTRACT.ACCOUNTID", accountids).
- Desc("ERMS3_SPOTCONTRACTDETAIL.SPOTCONTRACTID")
- err := s.Find(&datas)
- return datas, err
- }
- // InsertErms2AsApply 新增期现套利业务申请
- func InsertErms2AsApply(apply Erms2asapply) error {
- engine := db.GetEngine()
- // 生成ID
- var err error
- if apply.Asapplyid, err = GetSerialNumber("342"); err != nil {
- return err
- }
- sql := `insert into ERMS2_ASApply (
- Asapplyid ,
- Asno ,
- Asname ,
- Biztype ,
- Userid ,
- Deliverygoodsid,
- Goodsgroupid ,
- Spotquota ,
- Futurequote ,
- Applybasis ,
- Applystatus ,
- Remark ,
- Marketid ,
- Tradedate ,
- Creatorid ,
- Createtime
- ) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,to_date(?, 'YYYY-MM-DD HH24:MI:SS'))`
- _, err = engine.Exec(sql,
- apply.Asapplyid,
- apply.Asno,
- apply.Asname,
- apply.Biztype,
- apply.Userid,
- apply.Deliverygoodsid,
- apply.Goodsgroupid,
- apply.Spotquota,
- apply.Futurequote,
- apply.Applybasis,
- apply.Applystatus,
- apply.Remark,
- apply.Marketid,
- apply.Tradedate,
- apply.Creatorid,
- time.Now().Format("2006-01-02 15:04:05"),
- )
- return err
- }
- // InsertErms2SpotTradeApply 新增现货贸易业务申请
- func InsertErms2SpotTradeApply(apply Erms2spottradeapply) error {
- engine := db.GetEngine()
- // 生成ID
- var err error
- if apply.Spottradeid, err = GetSerialNumber("341"); err != nil {
- return err
- }
- sql := `insert into ERMS2_SPOTTRADEAPPLY (
- Spottradeid ,
- Spottradeno ,
- Spottradename ,
- Areauserid ,
- Deliverygoodsid,
- Wrstandardid ,
- Goodsgroupid ,
- Spotaccountid ,
- Futureaccountid,
- Remark ,
- Applyjsondetail,
- Applystatus ,
- Marketid ,
- Tradedate ,
- Creatorid ,
- Createtime
- ) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,to_date(?, 'YYYY-MM-DD HH24:MI:SS'))`
- _, err = engine.Exec(sql,
- apply.Spottradeid,
- apply.Spottradeno,
- apply.Spottradename,
- apply.Areauserid,
- apply.Deliverygoodsid,
- apply.Wrstandardid,
- apply.Goodsgroupid,
- apply.Spotaccountid,
- apply.Futureaccountid,
- apply.Remark,
- apply.Applyjsondetail,
- apply.Applystatus,
- apply.Marketid,
- apply.Tradedate,
- apply.Creatorid,
- time.Now().Format("2006-01-02 15:04:05"),
- )
- return err
- }
|