func (c *PimProductList) Render() web.Result { d := []ent.PimProduct{} q := biz.PimProduct.Select() err := q.Parse(c.Cond).Rows(&d) if err != nil { return web.Fail(err) } return web.Done(d) }
func (c *MrkPromotionList) Render() web.Result { d := []ent.MrkPromotion{} q := biz.MrkPromotion.Select() err := q.Parse(c.Cond).Rows(&d) if err != nil { return web.Fail(err) } return web.Done(d) }
func (c *SrmSupplierList) Render() web.Result { d := []ent.SrmSupplier{} q := biz.SrmSupplier.Select() err := q.Parse(c.Cond).Rows(&d) if err != nil { return web.Fail(err) } return web.Done(d) }
func (c *WhlOrderSkuList) Render() web.Result { d := []ent.WhlOrderSku{} q := biz.WhlOrderSku.Select() err := q.Parse(c.Cond).Rows(&d) if err != nil { return web.Fail(err) } return web.Done(d) }
func (c *InvLogList) Render() web.Result { d := []ent.InvLog{} q := biz.InvLog.Select() err := q.Parse(c.Cond).Rows(&d) if err != nil { return web.Fail(err) } return web.Done(d) }
func (c *MrkPriceEdit) Render() web.Result { return web.Done(1) }
func (c *InvLogDelete) Render() web.Result { return web.Done(1) }
func (c *IdmLoginDelete) Render() web.Result { return web.Done(1) }
func (c *InvLogEdit) Render() web.Result { return web.Done(1) }
func (c *RetCustomerDelete) Render() web.Result { return web.Done(1) }
func (c *MrkPromotionDelete) Render() web.Result { return web.Done(1) }
func (c *MrkPriceDelete) Render() web.Result { return web.Done(1) }
func (c *PimProductDelete) Render() web.Result { return web.Done(1) }
func (c *SrmSupplierEdit) Render() web.Result { return web.Done(1) }
func (c *SrmSupplierDelete) Render() web.Result { return web.Done(1) }
func (c *PimSkuDelete) Render() web.Result { return web.Done(1) }
func (c *PimSkuEdit) Render() web.Result { return web.Done(1) }
func (c *PimColorEdit) Render() web.Result { return web.Done(1) }
func (c *PimTaxonomyDelete) Render() web.Result { return web.Done(1) }
func (c *PimTaxonomyEdit) Render() web.Result { return web.Done(1) }
func (c *PimProductEdit) Render() web.Result { return web.Done(1) }
func (c *WhlOrderSkuEdit) Render() web.Result { return web.Done(1) }
func (c *IdmRoleActionEdit) Render() web.Result { return web.Done(1) }
func (c *RetCustomerEdit) Render() web.Result { return web.Done(1) }
func (c *WhlOrderSkuDelete) Render() web.Result { return web.Done(1) }
func (c *IdmRoleActionDelete) Render() web.Result { return web.Done(1) }
func (c *MrkPromotionEdit) Render() web.Result { return web.Done(1) }
func (c *IdmUserRoleEdit) Render() web.Result { return web.Done(1) }
func (c *IdmUserRoleDelete) Render() web.Result { return web.Done(1) }
func (c *IdmLoginEdit) Render() web.Result { return web.Done(1) }