Commit f4261d69 authored by 曹云霄's avatar 曹云霄

修改项说明:

parent 169dd272
......@@ -9,6 +9,7 @@
#import "IntegralDetailsViewController.h"
#import "IntegralDetailsTableViewCell.h"
#import "prizeDetailsTableViewCell.h"
#import "PrizeExchangeDetailsViewController.h"
@interface IntegralDetailsViewController ()<UITableViewDelegate,UITableViewDataSource,DZNEmptyDataSetSource,DZNEmptyDataSetDelegate>
/**
......@@ -16,14 +17,11 @@
*/
@property (nonatomic,strong) NSMutableArray *datasArray;
@end
@implementation IntegralDetailsViewController
- (void)viewDidAppear:(BOOL)animated
{
[self.integralDetailsTableView.mj_header beginRefreshing];
}
- (void)viewDidLoad {
[super viewDidLoad];
......@@ -35,10 +33,12 @@
#pragma mark - UI
- (void)uiConfigAction
{
self.integralDetailsTableView.rowHeight = 70;
self.integralDetailsTableView.rowHeight = (self.cellType == PrizeTableView)?90:70;
self.integralDetailsTableView.tableFooterView = [UIView new];
if (self.cellType == PrizeTableView) {
self.integralDetailsTableView.frame = CGRectMake(0, 64, ScreenWidth, ScreenHeight-64);
self.integralDetailsTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.integralDetailsTableView.backgroundColor = RGB(237, 238, 239, 1);
}
}
......@@ -68,6 +68,7 @@
headerRefresh.stateLabel.hidden = YES;
headerRefresh.lastUpdatedTimeLabel.hidden = YES;
self.integralDetailsTableView.mj_header = headerRefresh;
[self.integralDetailsTableView.mj_header beginRefreshing];
MJRefreshAutoNormalFooter *footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
switch (weakSelf.cellType) {
case IntrgralTableView:
......@@ -77,12 +78,7 @@
break;
case PrizeTableView:
{
// if (++ weakSelf.drawModel.page.page > weakSelf.totalPage) {
// [weakSelf.integralDetailsTableView.mj_footer endRefreshingWithNoMoreData];
// }else
// {
// [weakSelf queryPrizeDetails:NO];
// }
[weakSelf.integralDetailsTableView.mj_footer endRefreshingWithNoMoreData];
}
break;
......@@ -143,11 +139,11 @@
weakSelf.integralDetailsTableView.emptyDataSetSource = weakSelf;
weakSelf.integralDetailsTableView.emptyDataSetDelegate = weakSelf;
if ([returnValue[@"code"] isEqualToNumber:@0]) {
RsScoreDetails *integralDatas = [[RsScoreDetails alloc]initWithDictionary:returnValue[@"data"] error:nil];
[weakSelf.datasArray addObjectsFromArray:integralDatas.recoreds];
if (weakSelf.returnIntegralDetailsBlock) {
weakSelf.returnIntegralDetailsBlock(integralDatas);
if (isRemove) {
[weakSelf.datasArray removeAllObjects];
}
RsPrizeBillResponse *integralDatas = [[RsPrizeBillResponse alloc]initWithDictionary:returnValue[@"data"] error:nil];
[weakSelf.datasArray addObjectsFromArray:integralDatas.bills];
}else {
[weakSelf ErrorMBProgressView:returnValue[@"message"]];
}
......@@ -179,6 +175,8 @@
case PrizeTableView:
{
prizeDetailsTableViewCell *prizeCell = [tableView dequeueReusableCellWithIdentifier:@"prizeDetailsTableViewCell" forIndexPath:indexPath];
prizeCell.prizeListModel = self.datasArray[indexPath.row];
prizeCell.backgroundColor = [UIColor clearColor];
return prizeCell;
}
break;
......@@ -196,7 +194,17 @@
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (self.cellType) {
case PrizeTableView:
{
PrizeExchangeDetailsViewController *exchangeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"PrizeExchangeDetailsViewController"];
[self.navigationController pushViewController:exchangeDetails animated:YES];
}
break;
default:
break;
}
}
#pragma mark -友好界面
......
......@@ -21,6 +21,11 @@
*/
@property (nonatomic,strong) RsPrizeBill *prizeBillResult;
/**
section title Array
*/
@property (nonatomic,strong) NSArray *sectionTitleArray;
@end
@implementation PrizeExchangeDetailsViewController
......@@ -65,7 +70,7 @@
#pragma mark - <UITableViewDelegate,UITableViewDataSource>
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.row) {
switch (indexPath.section) {
case ExchangeBillInformation:
{
PrizeExchangeBillTableViewCell *billCell = [tableView dequeueReusableCellWithIdentifier:@"PrizeExchangeBillTableViewCell" forIndexPath:indexPath];
......@@ -95,7 +100,7 @@
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
return 1;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
......@@ -103,23 +108,26 @@
return 3;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 60;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
PrizeExchangeSectionTableViewCell *headerView = [tableView dequeueReusableCellWithIdentifier:@"PrizeExchangeSectionTableViewCell"];
headerView.sectionTitleLabel.text = self.sectionTitleArray[section];
return headerView;
}
#pragma mark - lazy
- (NSArray *)sectionTitleArray
{
if (!_sectionTitleArray) {
_sectionTitleArray = @[@"兑换单信息",@"收货信息",@"奖励信息",@"物流信息"];
}
return _sectionTitleArray;
}
......
......@@ -198,13 +198,9 @@
#pragma mark - 兑换记录
- (IBAction)exchangeRecordButton:(UIButton *)sender {
// IntegralDetailsViewController *prizeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"IntegralDetailsViewController"];
// prizeDetails.cellType = PrizeTableView;
// [self.navigationController pushViewController:prizeDetails animated:YES];
PrizeExchangeDetailsViewController *exchangeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"PrizeExchangeDetailsViewController"];
[self.navigationController pushViewController:exchangeDetails animated:YES];
IntegralDetailsViewController *prizeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"IntegralDetailsViewController"];
prizeDetails.cellType = PrizeTableView;
[self.navigationController pushViewController:prizeDetails animated:YES];
}
......
......@@ -12,11 +12,23 @@
/**
兑奖时间
*/
@property (weak, nonatomic) IBOutlet UILabel *prizeTimeLabel;
/**
兑奖单单号
*/
@property (weak, nonatomic) IBOutlet UILabel *prizeOrderNumberLabel;
/**
兑奖单状态
*/
@property (weak, nonatomic) IBOutlet UIButton *prizeStateButton;
/**
兑奖单列表
*/
@property (nonatomic,strong) RsPrizeBill *prizeListModel;
@end
......@@ -12,18 +12,25 @@
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
- (void)setPrizeListModel:(RsPrizeBill *)prizeListModel
{
_prizeListModel = prizeListModel;
self.prizeTimeLabel.text = _prizeListModel.bill.createDate;
self.prizeOrderNumberLabel.text = _prizeListModel.bill.billnumber;
NSDictionary *textDict = [BaseViewController returnPrizeBillStateTitleColor:_prizeListModel.bill.state];
[self.prizeStateButton setTitle:textDict[@"title"] forState:UIControlStateNormal];
[self.prizeStateButton setTitleColor:textDict[@"color"] forState:UIControlStateNormal];
}
#pragma mark - 兑奖单状态点击--->详情
- (IBAction)prizeStateButtonClickAction:(UIButton *)sender {
}
@end
......@@ -14,29 +14,29 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" misplaced="YES" id="6Yy-Ao-XPR">
<frame key="frameInset" minX="23" minY="80" height="90" maxX="23.5"/>
<frame key="frameInset" minX="23.5" minY="80" height="90" maxX="24"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" id="ehM-sk-qnE">
<frame key="frameInset" minX="0.94%" minY="45.00%" width="70" height="70"/>
<frame key="frameInset" minX="0.94%" minY="39.47%" width="69" height="71"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="当前积分" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="W9n-sx-VVL">
<frame key="frameInset" minX="10.90%" minY="30.34%" width="9.77%" height="17.5"/>
<frame key="frameInset" minX="10.80%" minY="30.07%" width="9.78%" height="18.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="12233300" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="luv-aV-HGH">
<frame key="frameInset" minX="10.90%" minY="65.94%" width="14.07%" height="21"/>
<frame key="frameInset" minX="10.80%" minY="64.96%" width="14.03%" height="21.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.98039215690000003" green="0.32156862749999998" blue="0.050980392159999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" misplaced="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="J4F-f5-GIu">
<frame key="frameInset" minY="28" width="99.5" height="35" maxX="33.5"/>
<frame key="frameInset" minY="28" width="100" height="35" maxX="33.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.34901960780000002" green="0.67450980390000004" blue="0.86274509799999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<state key="normal" title="礼品兑换">
......@@ -52,36 +52,36 @@
</connections>
</button>
<view contentMode="scaleToFill" misplaced="YES" id="DFa-vp-e22">
<frame key="frameInset" minX="25.55%" minY="48.75%" width="1" height="50"/>
<frame key="frameInset" minX="25.45%" minY="46.91%" width="2" height="49.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.87058823529999996" green="0.87058823529999996" blue="0.87058823529999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</view>
<view contentMode="scaleToFill" misplaced="YES" id="wwz-7Q-A55">
<frame key="frameInset" minX="42.94%" minY="48.75%" width="0.5" height="50"/>
<frame key="frameInset" minX="42.90%" minY="46.91%" width="1" height="49.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.87058823529999996" green="0.87058823529999996" blue="0.87058823529999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="13" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YJy-KV-6XP">
<frame key="frameInset" minX="46.09%" minY="65.94%" width="14.07%" height="21"/>
<frame key="frameInset" minX="45.98%" minY="64.96%" width="14.03%" height="21.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="35" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Eh-Eu-GWV">
<frame key="frameInset" minX="28.70%" minY="65.94%" width="13.86%" height="21"/>
<frame key="frameInset" minX="28.62%" minY="64.96%" width="13.98%" height="21.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="季度积分排行" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="zzy-VB-gpq">
<frame key="frameInset" minX="28.70%" minY="30.34%" width="9.36%" height="17.5"/>
<frame key="frameInset" minX="28.62%" minY="30.07%" width="9.32%" height="18.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="年度积分排行" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xbh-34-JR3">
<frame key="frameInset" minX="46.09%" minY="30.34%" width="9.77%" height="17.5"/>
<frame key="frameInset" minX="45.98%" minY="30.07%" width="9.78%" height="18.5"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
......@@ -96,7 +96,7 @@
</userDefinedRuntimeAttributes>
</view>
<view contentMode="scaleToFill" misplaced="YES" id="hU8-JL-KlR">
<frame key="frameInset" minX="23" minY="190" maxX="23.5" maxY="25.5"/>
<frame key="frameInset" minX="23.5" minY="189" maxX="24" maxY="26"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="积分明细" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2Ip-ij-E17">
......@@ -133,7 +133,7 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" misplaced="YES" dataMode="prototypes" id="8mA-NF-xF3">
<frame key="frameInset" minX="-0.5" minY="126.5" maxX="1.5" maxY="1.5"/>
<frame key="frameInset" minX="-0.5" minY="126" maxX="1.5" maxY="1.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" red="0.92941176470588238" green="0.93333333333333335" blue="0.93725490196078431" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="BAY-Cu-eCc">
......@@ -186,7 +186,7 @@
</connections>
</collectionView>
<button opaque="NO" contentMode="scaleToFill" misplaced="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="ZKg-2M-z15">
<frame key="frameInset" minY="83" width="101.5" height="30" maxX="34.5"/>
<frame key="frameInset" minY="83" width="101" height="30" maxX="35"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.34509803921568627" green="0.67450980392156867" blue="0.86274509803921573" alpha="1" colorSpace="calibratedRGB"/>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
......@@ -242,15 +242,15 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<tableView clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="106" sectionHeaderHeight="28" sectionFooterHeight="28" id="6OB-63-x5H">
<frame key="frameInset" minY="63.5" maxX="0.5"/>
<frame key="frameInset" minY="63" maxX="1" maxY="0.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="PrizeExchangeBillTableViewCell" rowHeight="100" id="nOs-BP-FmU" customClass="PrizeExchangeBillTableViewCell">
<rect key="frame" x="0.0" y="28" width="1023.5" height="100"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="PrizeExchangeBillTableViewCell" rowHeight="100" id="nOs-BP-FmU" customClass="PrizeExchangeBillTableViewCell">
<rect key="frame" x="0.0" y="28" width="1023" height="100"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nOs-BP-FmU" id="MbJ-jd-L1F">
<frame key="frameInset" width="1023.5" height="99"/>
<frame key="frameInset" width="1023" height="99.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="兑换单号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="O9g-97-MWd">
......@@ -261,14 +261,14 @@
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="1234567" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="aya-ed-dzb">
<frame key="frameInset" minX="124" minY="20" width="28.68%" height="21"/>
<frame key="frameInset" minX="124" minY="20" width="28.70%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="2016年11月22日18:16:19" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="QD9-jl-dvj">
<frame key="frameInset" minX="124" minY="59" width="28.68%" height="21"/>
<frame key="frameInset" minX="124" minY="59" width="28.70%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
......@@ -282,14 +282,14 @@
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="兑换状态:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="bCB-y3-9PG">
<frame key="frameInset" minX="55.53%" minY="20" width="70" height="21"/>
<frame key="frameInset" minX="55.51%" minY="20" width="70" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="已申请" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ntU-dA-Kkb">
<frame key="frameInset" minX="59.06%" minY="20" width="25.21%" height="21"/>
<frame key="frameInset" minX="59.04%" minY="20" width="25.22%" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
......@@ -303,11 +303,11 @@
<outlet property="exchangeTimeLabel" destination="QD9-jl-dvj" id="nK9-bu-bwh"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PrizeExchangeConsigneeTableViewCell" rowHeight="100" id="Dqq-9I-czz" customClass="PrizeExchangeConsigneeTableViewCell">
<rect key="frame" x="0.0" y="128" width="1023.5" height="100"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PrizeExchangeConsigneeTableViewCell" rowHeight="100" id="Dqq-9I-czz" customClass="PrizeExchangeConsigneeTableViewCell">
<rect key="frame" x="0.0" y="128" width="1023" height="100"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Dqq-9I-czz" id="sVs-pU-Wny">
<frame key="frameInset" width="1023.5" height="99"/>
<frame key="frameInset" width="1023" height="99.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="收货人:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="uEN-op-W8u">
......@@ -318,14 +318,14 @@
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="1234567" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Ure-Cw-GPA">
<frame key="frameInset" minX="124" minY="20" width="28.68%" height="21"/>
<frame key="frameInset" minX="124" minY="20" width="28.70%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="2016年11月22日18:16:19" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dVM-nK-yXe">
<frame key="frameInset" minX="124" minY="59" width="28.68%" height="21"/>
<frame key="frameInset" minX="124" minY="59" width="28.70%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
......@@ -339,14 +339,14 @@
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="手机号码:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="eGs-nr-OvN">
<frame key="frameInset" minX="55.53%" minY="20" width="70" height="21"/>
<frame key="frameInset" minX="55.51%" minY="20" width="70" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="已申请" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="iV7-ce-zDB">
<frame key="frameInset" minX="59.06%" minY="20" width="25.21%" height="21"/>
<frame key="frameInset" minX="59.04%" minY="20" width="25.22%" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
......@@ -361,19 +361,19 @@
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="PrizeExchangeSectionTableViewCell" rowHeight="60" id="h1B-nj-hUc" customClass="PrizeExchangeSectionTableViewCell">
<rect key="frame" x="0.0" y="228" width="1023.5" height="60"/>
<rect key="frame" x="0.0" y="228" width="1023" height="60"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="h1B-nj-hUc" id="Y9f-ox-GSm">
<frame key="frameInset" width="1023.5" height="59"/>
<frame key="frameInset" width="1023" height="59.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" misplaced="YES" id="Oo9-M7-rcL">
<frame key="frameInset" minY="10" maxY="-1"/>
<frame key="frameInset" minY="10" maxY="-0.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="促销信息" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="aWB-Zw-ZY4">
<frame key="frameInset" minX="28" minY="15" width="141" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<frame key="frameInset" minX="28" width="141" height="21" maxY="13.5"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
......@@ -388,11 +388,11 @@
<outlet property="sectionTitleLabel" destination="aWB-Zw-ZY4" id="naO-Iy-o4b"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="PrizeExchangeInformationTableViewCell" rowHeight="126" id="L62-fY-nOH" customClass="PrizeExchangeInformationTableViewCell">
<rect key="frame" x="0.0" y="288" width="1023.5" height="126"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="PrizeExchangeInformationTableViewCell" rowHeight="126" id="L62-fY-nOH" customClass="PrizeExchangeInformationTableViewCell">
<rect key="frame" x="0.0" y="288" width="1023" height="126"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="L62-fY-nOH" id="gbr-pV-Tqj">
<frame key="frameInset" width="1023.5" height="125"/>
<frame key="frameInset" width="1023" height="125"/>
<autoresizingMask key="autoresizingMask"/>
</tableViewCellContentView>
</tableViewCell>
......@@ -422,26 +422,26 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<tableView clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="60" sectionHeaderHeight="28" sectionFooterHeight="28" id="qbR-St-FxM">
<frame key="frameInset"/>
<frame key="frameInset" minX="-0.5" minY="-0.5" maxY="0.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="IntegralDetailsTableViewCell" rowHeight="70" id="dvh-wm-f5G" customClass="IntegralDetailsTableViewCell">
<rect key="frame" x="0.0" y="28" width="1024" height="70"/>
<rect key="frame" x="0.0" y="28" width="1024.5" height="70"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dvh-wm-f5G" id="UeK-sH-3z8">
<frame key="frameInset" width="1024" height="69"/>
<frame key="frameInset" width="1024.5" height="69"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="积分清零" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YDf-Lj-2uh">
<frame key="frameInset" minX="19" minY="29.17%" width="17.02%" height="21"/>
<frame key="frameInset" minX="19" minY="29.17%" width="17.01%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="12"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="IZs-JW-Ffo">
<frame key="frameInset" minX="19" minY="70.83%" width="17.02%" height="21"/>
<frame key="frameInset" minX="19" minY="69.79%" width="17.01%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="10"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
......@@ -462,19 +462,37 @@
<outlet property="integralTypeLabel" destination="YDf-Lj-2uh" id="RPp-tv-Fqk"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="prizeDetailsTableViewCell" rowHeight="70" id="GX2-Gv-YRn" customClass="prizeDetailsTableViewCell">
<rect key="frame" x="0.0" y="98" width="1024" height="70"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="prizeDetailsTableViewCell" rowHeight="90" id="GX2-Gv-YRn" customClass="prizeDetailsTableViewCell">
<rect key="frame" x="0.0" y="98" width="1024.5" height="90"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GX2-Gv-YRn" id="tQ9-m3-04b">
<frame key="frameInset" width="1024" height="69"/>
<frame key="frameInset" width="1024.5" height="89"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" misplaced="YES" id="Zvz-7f-MPc">
<frame key="frameInset" minX="25" minY="17" maxX="25.5" maxY="-1"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="兑换单号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="WLA-Tz-XJu">
<frame key="frameInset" minX="22" minY="70.48%" width="54" height="20.5"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="1234567898754" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="fKt-d3-ydD">
<frame key="frameInset" minX="74" minY="70.48%" width="17.83%" height="20.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="10"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" misplaced="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" id="ynF-nD-CoS">
<frame key="frameInset" minY="46.81%" width="64.5" height="22" maxX="11"/>
<frame key="frameInset" minY="50.00%" width="99" height="40" maxX="11"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="11"/>
<inset key="titleEdgeInsets" minX="-19" minY="0.0" maxX="0.0" maxY="0.0"/>
<inset key="imageEdgeInsets" minX="49" minY="0.0" maxX="0.0" maxY="0.0"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<inset key="titleEdgeInsets" minX="-20" minY="0.0" maxX="0.0" maxY="0.0"/>
<inset key="imageEdgeInsets" minX="78" minY="0.0" maxX="0.0" maxY="0.0"/>
<state key="normal" title="已申请" image="right">
<color key="titleColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</state>
......@@ -483,28 +501,23 @@
</connections>
</button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="2016年11月22日10:07:57" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AiS-xF-TBa">
<frame key="frameInset" minX="19" minY="29.17%" width="21.59%" height="21"/>
<frame key="frameInset" minX="22" minY="30.77%" width="21.64%" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="12"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="兑换单号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="WLA-Tz-XJu">
<frame key="frameInset" minX="19" minY="71.13%" width="54" height="20.5"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="1234567898754" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="fKt-d3-ydD">
<frame key="frameInset" minX="67.5" minY="71.13%" width="17.72%" height="20.5"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="10"/>
<color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="2"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
</subviews>
</tableViewCellContentView>
<color key="backgroundColor" red="0.92941176470588238" green="0.93333333333333335" blue="0.93725490196078431" alpha="1" colorSpace="calibratedRGB"/>
<connections>
<outlet property="prizeOrderNumberLabel" destination="fKt-d3-ydD" id="pfB-Zo-MKE"/>
<outlet property="prizeStateButton" destination="ynF-nD-CoS" id="ZYa-7d-mho"/>
......
......@@ -425,10 +425,16 @@
#pragma mark - <##>查询兑奖单state对应文字
//+ (id)returnPrizeBillStateTitleColor:(NSString *)stateCode
//{
//
//}
+ (id)returnPrizeBillStateTitleColor:(NSString *)stateCode
{
NSDictionary *dict;
if ([stateCode isEqualToString:@"requested"]) {
dict = @{@"title":@"已申请",@"color":RGB(127, 192, 62, 1)};
}else if ([stateCode isEqualToString:@"requested"]) {
dict = @{@"title":@"已发货",@"color":RGB(245, 185, 74, 1)};
}
return dict;
}
#pragma mark -查询购物车数量
- (void)QueryShoppingCarNumber
......
......@@ -151,7 +151,7 @@
//**
// * 服务器正式地址
// */
#define SERVERREQUESTURL(URL) [NSString stringWithFormat:@"http://dg.opple.com/opple-web/app%@",URL]
//#define SERVERREQUESTURL(URL) [NSString stringWithFormat:@"http://dg.opple.com/opple-web/app%@",URL]
/**
* 搜索框输入通知
......
......@@ -21,6 +21,26 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* @author wolv
*
*/
/**
*
*/
extern NSString * const TOPRIZEBILLENTITYSTATE_REQUESTED;
/**
*
*/
extern NSString * const TOPRIZEBILLENTITYSTATE_SHIPPED;
/**
*
*/
extern NSString * const TOPRIZEBILLENTITYSTATE_DONE;
@class EarningsResponse;
@class RsApplyBillRequest;
@class RsCommissionRequest;
......@@ -42,21 +62,22 @@ extern NSString * const SORTDIRECTION_DESC;
@class OrderPayRequest;
@class PrizeCondition;
@class RsPrizeBill;
@class SceneCondition;
@class RsActionResult;
@class SceneFilter;
@class RsShippingAddrEntity;
@class SaveShoppingCartRequest;
@class RsScoreDetails;
@class DeleteCartRequest;
@class ShopCartFilter;
@class RsShareResponse;
@class TOCommissionHistEntity;
@class TOGoodsEntity;
@class VOResellerGoodsEntity;
@class TOGoodsCategoryEntity;
@class TOGoodsLabelCategoryEntity;
@class TOAwardEntity;
@class TOOrderEntity;
@class TOOrderPromotionEntity;
@class TOPrizeBillDetailsEntity;
@class StudyTaskCondition;
@class TOApplyBillEntity;
@class TOConsumerEntity;
@class TOGoodsForResellerEntity;
@class TOGoodsBrandEntity;
@class TOGoodsLabelEntity;
@class TOJingdongEcardEntity;
@class TODrawEntity;
@class TOOrderdetailEntity;
@class TOPositionEntity;
@class TOPrizeBillEntity;
@class TOPrizeEntity;
@class TOScoreRecordEntity;
@class TOShopcartEntity;
......@@ -65,20 +86,20 @@ extern NSString * const SORTDIRECTION_DESC;
@class UCN;
@class TOShippingAddrEntity;
@class TOSceneEntity;
@class TOPrizeBillEntity;
@class TOPositionEntity;
@class TOOrderdetailEntity;
@class TODrawEntity;
@class TOJingdongEcardEntity;
@class TOGoodsLabelEntity;
@class TOGoodsBrandEntity;
@class TOGoodsForResellerEntity;
@class TOConsumerEntity;
@class TOApplyBillEntity;
@class StudyTaskCondition;
@class DeleteCartRequest;
@class RsScoreDetails;
@class RsActionResult;
@class TOPrizeBillDetailsEntity;
@class TOOrderPromotionEntity;
@class TOOrderEntity;
@class TOAwardEntity;
@class TOGoodsLabelCategoryEntity;
@class TOGoodsCategoryEntity;
@class VOResellerGoodsEntity;
@class TOGoodsEntity;
@class TOCommissionHistEntity;
@class RsShareResponse;
@class SaveShoppingCartRequest;
@class RsShippingAddrEntity;
@class SceneCondition;
@class RsPrizeBillResponse;
@class PromotionGoods;
@class OrderBill;
@class GroupByOrderNumber;
......@@ -95,8 +116,8 @@ extern NSString * const SORTDIRECTION_DESC;
@class RsAwardDraw;
@class TSBaseUser;
@class TSDepart;
@class RsLotteryResponse;
@class TSUserOrg;
@class RsLotteryResponse;
@class PrizeResponse;
@class ShopCartResponse;
@class SceneResponse;
......@@ -130,21 +151,22 @@ extern NSString * const SORTDIRECTION_DESC;
@protocol OrderPayRequest @end
@protocol PrizeCondition @end
@protocol RsPrizeBill @end
@protocol SceneCondition @end
@protocol RsActionResult @end
@protocol SceneFilter @end
@protocol RsShippingAddrEntity @end
@protocol SaveShoppingCartRequest @end
@protocol RsScoreDetails @end
@protocol DeleteCartRequest @end
@protocol ShopCartFilter @end
@protocol RsShareResponse @end
@protocol TOCommissionHistEntity @end
@protocol TOGoodsEntity @end
@protocol VOResellerGoodsEntity @end
@protocol TOGoodsCategoryEntity @end
@protocol TOGoodsLabelCategoryEntity @end
@protocol TOAwardEntity @end
@protocol TOOrderEntity @end
@protocol TOOrderPromotionEntity @end
@protocol TOPrizeBillDetailsEntity @end
@protocol StudyTaskCondition @end
@protocol TOApplyBillEntity @end
@protocol TOConsumerEntity @end
@protocol TOGoodsForResellerEntity @end
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsLabelEntity @end
@protocol TOJingdongEcardEntity @end
@protocol TODrawEntity @end
@protocol TOOrderdetailEntity @end
@protocol TOPositionEntity @end
@protocol TOPrizeBillEntity @end
@protocol TOPrizeEntity @end
@protocol TOScoreRecordEntity @end
@protocol TOShopcartEntity @end
......@@ -153,20 +175,20 @@ extern NSString * const SORTDIRECTION_DESC;
@protocol UCN @end
@protocol TOShippingAddrEntity @end
@protocol TOSceneEntity @end
@protocol TOPrizeBillEntity @end
@protocol TOPositionEntity @end
@protocol TOOrderdetailEntity @end
@protocol TODrawEntity @end
@protocol TOJingdongEcardEntity @end
@protocol TOGoodsLabelEntity @end
@protocol TOGoodsBrandEntity @end
@protocol TOGoodsForResellerEntity @end
@protocol TOConsumerEntity @end
@protocol TOApplyBillEntity @end
@protocol StudyTaskCondition @end
@protocol DeleteCartRequest @end
@protocol RsScoreDetails @end
@protocol RsActionResult @end
@protocol TOPrizeBillDetailsEntity @end
@protocol TOOrderPromotionEntity @end
@protocol TOOrderEntity @end
@protocol TOAwardEntity @end
@protocol TOGoodsLabelCategoryEntity @end
@protocol TOGoodsCategoryEntity @end
@protocol VOResellerGoodsEntity @end
@protocol TOGoodsEntity @end
@protocol TOCommissionHistEntity @end
@protocol RsShareResponse @end
@protocol SaveShoppingCartRequest @end
@protocol RsShippingAddrEntity @end
@protocol SceneCondition @end
@protocol RsPrizeBillResponse @end
@protocol PromotionGoods @end
@protocol OrderBill @end
@protocol GroupByOrderNumber @end
......@@ -183,8 +205,8 @@ extern NSString * const SORTDIRECTION_DESC;
@protocol RsAwardDraw @end
@protocol TSBaseUser @end
@protocol TSDepart @end
@protocol RsLotteryResponse @end
@protocol TSUserOrg @end
@protocol RsLotteryResponse @end
@protocol PrizeResponse @end
@protocol ShopCartResponse @end
@protocol SceneResponse @end
......@@ -945,30 +967,20 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* @author Administrator
* 促销计算结果。
@author Debenson
@since 0.1
*/
@interface SceneCondition : JSONModel
/**
* 查询条件:风格
*
*
*/
@property (nonatomic, copy) NSString *styleEquals;
/**
* 查询条件:空间
*
*
*/
@property (nonatomic, copy) NSString *spaceEquals;
@interface RsActionResult : JSONModel
/**
* (no documentation provided)
*
* 结果集合,空集合表示没有促销。
* @see Action
*
*/
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */
@property (nonatomic, strong) NSArray<Action> *actions;
@end /* interface RsActionResult */
......@@ -995,46 +1007,54 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* @author Administrator
@since 0.1
*/
@interface RsShippingAddrEntity : JSONModel
/**
* (no documentation provided)
* @see TOShippingAddrEntity
*
*/
@property (nonatomic, strong) NSArray<TOShippingAddrEntity> *list;
@end /* interface RsShippingAddrEntity */
* 积分详情
@author wolv
*/
@interface RsScoreDetails : JSONModel
/**
* @author Debenson
@since 0.1
*
*
*
*/
@interface SaveShoppingCartRequest : JSONModel
@property (nonatomic, assign) double currentScore;
/**
* 消费者标识
*
*
*
*/
@property (nonatomic, copy) NSString *consumerId;
@property (nonatomic, assign) NSInteger quarterlyRanking;
/**
* 商品标识
*
*
*
*/
@property (nonatomic, copy) NSString *goodsId;
@property (nonatomic, assign) NSInteger annualRanking;
/**
* 商品数量,>0表示添加, <0表示减少
* (no documentation provided)
* @see TOScoreRecordEntity
*
*/
@property (nonatomic, strong) NSArray<TOScoreRecordEntity> *recoreds;
@end /* interface RsScoreDetails */
/**
* @author Debenson
@since 0.1
*/
@interface DeleteCartRequest : JSONModel
/**
* 购物车标识列表
* @see NSString
*
*/
@property (nonatomic, copy) NSString *count;
@end /* interface SaveShoppingCartRequest */
@property (nonatomic, strong) NSArray<NSString *> *cartIds;
@end /* interface DeleteCartRequest */
......@@ -1063,39 +1083,58 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* 商品分享返回数据。
* 学习任务查询条件。
@author thor
@author Debenson
@since 0.1
*/
@interface RsShareResponse : JSONModel
@interface StudyTaskCondition : JSONModel
/**
* 分享记录标识
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *shareId;
@property (nonatomic, copy) NSString *typeEquals;
/**
* 分享页面链接
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *url;
@end /* interface RsShareResponse */
@property (nonatomic, copy) NSString *stateEquals;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *titleLike;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *employeeIdEquals;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, strong) DataPage *page;
@end /* interface StudyTaskCondition */
/**
* @Title: Entity
@Description: 导购分成表
*
@Title: Entity
@Description: 提现申请
@author onlineGenerator
@date 2016-05-16 16:15:27
@date 2016-08-24 09:40:02
@version V1.0
*/
@interface TOCommissionHistEntity : JSONModel
@interface TOApplyBillEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
......@@ -1109,11 +1148,17 @@ extern NSString * const SORTDIRECTION_DESC;
*/
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
......@@ -1137,105 +1182,81 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *resellerCode;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *employeeId;
@property (nonatomic, copy) NSString *billNumber;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *orderId;
@property (nonatomic, copy) NSString *guideId;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *amount;
@property (nonatomic, copy) NSString *guideName;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *afteramount;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *remark;
@property (nonatomic, strong) NSNumber *applyMoney;
/**
* 方法: 设置java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *orderNumber;
@property (nonatomic, strong) NSNumber *beforeMoney;
/**
* (no documentation provided)
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *employeeName;
@property (nonatomic, strong) NSNumber *afterMoney;
/**
* 方法: 设置java.lang.String
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@end /* interface TOCommissionHistEntity */
@property (nonatomic, copy) NSString *billStates;
@end /* interface TOApplyBillEntity */
/**
* @Title: Entity
@Description: t_o_goods
@Description: 客户
@author onlineGenerator
@date 2016-05-12 15:44:01
@date 2016-05-08 18:08:58
@version V1.0
*/
@interface TOGoodsEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, assign) NSInteger resellerInv;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, strong) NSNumber *resellerTagPrice;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *resellerState;
@interface TOConsumerEntity : JSONModel
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *categoryName;
@property (nonatomic, copy) NSString *fid;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *brandName;
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.util.Date
*
......@@ -1243,215 +1264,241 @@ extern NSString * const SORTDIRECTION_DESC;
*/
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *onlineTime;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *company;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *mobile;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *province;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *number;
@property (nonatomic, copy) NSString *city;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *categoryId;
@property (nonatomic, copy) NSString *country;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *brandId;
@property (nonatomic, copy) NSString *address;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *keyword;
@property (nonatomic, copy) NSString *picture;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, strong) NSNumber *guidePrice;
@property (nonatomic, copy) NSString *lastVisitedTime;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *tagPrice;
@property (nonatomic, copy) NSString *company;
@end /* interface TOConsumerEntity */
/**
* 方法: 取得java.math.BigDecimal
*
*
* (no documentation provided)
*/
@property (nonatomic, strong) NSNumber *costPrice;
@interface TOGoodsForResellerEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.Integer
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) NSInteger inv;
@property (nonatomic, copy) NSString *resellerId;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *detailedIntro;
@property (nonatomic, strong) TOGoodsEntity *goods;
/**
* 方法: 取得java.lang.Double
* (no documentation provided)
*
*
*/
@property (nonatomic, assign) double weight;
@property (nonatomic, copy) NSString *path;
@end /* interface TOGoodsForResellerEntity */
/**
* 方法: 取得java.lang.String
*
*
* @Title: Entity
@Description: 商品品牌
@author onlineGenerator
@date 2016-05-05 16:14:51
@version V1.0
*/
@property (nonatomic, copy) NSString *unit;
@interface TOGoodsBrandEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *productProfile;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *power;
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *colorTemperature;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *spec;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *function;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *material;
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *lightSource;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsStyle;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *series;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *area;
@property (nonatomic, copy) NSString *logo;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *size;
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */
/**
* 方法: 取得java.lang.String
* @Title: Entity
@Description: 商品标签
@author onlineGenerator
@date 2016-05-05 17:18:15
@version V1.0
*/
@interface TOGoodsLabelEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *space;
@property (nonatomic, strong) TOGoodsLabelCategoryEntity *category;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *installMethod;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *lightNumber;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *pictures;
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *barcode;
@property (nonatomic, copy) NSString *name;
/**
* (no documentation provided)
* @see TOGoodsForResellerEntity
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSArray<TOGoodsForResellerEntity> *goodsResellerList;
@end /* interface TOGoodsEntity */
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */
/**
* 经销商和商品关系表。
* @Title: Entity
@Description: 京东E卡
@author onlineGenerator
@date 2016-10-18 16:34:26
@version V1.0
@author Debenson
@since 0.1
*/
@interface VOResellerGoodsEntity : JSONModel
@interface TOJingdongEcardEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
......@@ -1459,285 +1506,305 @@ extern NSString * const SORTDIRECTION_DESC;
*/
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *onlineTime;
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *company;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *number;
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *categoryId;
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *brandId;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *keyword;
@property (nonatomic, copy) NSString *cardNumber;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *guidePrice;
@property (nonatomic, copy) NSString *cardPassword;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, strong) NSNumber *tagPrice;
@property (nonatomic, assign) NSInteger denomation;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *costPrice;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, copy) NSString *guideId;
/**
* 方法: 取得java.lang.Integer
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) NSInteger inv;
@property (nonatomic, copy) NSString *orderNumber;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *detailedIntro;
@property (nonatomic, copy) NSString *orderReceiptUrl;
@end /* interface TOJingdongEcardEntity */
/**
* 方法: 取得java.lang.Double
* @Title: Entity
@Description: 抽奖记录
@author onlineGenerator
@date 2016-11-09 18:13:23
@version V1.0
*/
@interface TODrawEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) double weight;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *unit;
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *productProfile;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *power;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *colorTemperature;
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *spec;
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *function;
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *material;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *lightSource;
@property (nonatomic, copy) NSString *drawDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsStyle;
@property (nonatomic, copy) NSString *winnerId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *series;
@property (nonatomic, copy) NSString *awardId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *area;
@property (nonatomic, copy) NSString *awardDescription;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *size;
@property (nonatomic, copy) NSString *orderNumber;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *space;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *installMethod;
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TODrawEntity */
/**
* 方法: 取得java.lang.String
* @Title: Entity
@Description: 订单详情
@author onlineGenerator
@date 2016-05-06 12:53:09
@version V1.0
*/
@interface TOOrderdetailEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *lightNumber;
@property (nonatomic, copy) NSString *brandName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *pictures;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *barcode;
@property (nonatomic, copy) NSString *goodsId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *resellerId;
@property (nonatomic, copy) NSString *goodsCode;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *categoryName;
@property (nonatomic, copy) NSString *goodsName;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *brandName;
@end /* interface VOResellerGoodsEntity */
@property (nonatomic, copy) NSString *goodsCover;
/**
* @Title: Entity
@Description: 商品分类
@author onlineGenerator
@date 2016-05-10 10:17:53
@version V1.0
* 方法: 取得java.lang.String
*
*
*/
@interface TOGoodsCategoryEntity : JSONModel
@property (nonatomic, copy) NSString *goodsSpec;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *upperName;
@property (nonatomic, copy) NSString *goodsBrand;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *goodsNum;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, strong) NSNumber *goodsPrice;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *orderId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *upperId;
@property (nonatomic, copy) NSString *goodsUnit;
/**
* 方法: 取得java.lang.Integer
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) NSInteger level;
@end /* interface TOGoodsCategoryEntity */
@property (nonatomic, copy) NSString *remark;
@end /* interface TOOrderdetailEntity */
/**
* @Title: Entity
@Description: 商品标签分类
@Description: 经销商员工职位
@author onlineGenerator
@date 2016-05-05 16:57:27
@date 2016-05-02 17:39:21
@version V1.0
*/
@interface TOGoodsLabelCategoryEntity : JSONModel
@interface TOPositionEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
......@@ -1749,773 +1816,771 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysCompanyCode;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, strong) NSNumber *commission;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, strong) NSNumber *lowestDiscount;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@end /* interface TOGoodsLabelCategoryEntity */
@property (nonatomic, copy) NSString *resellerCode;
@end /* interface TOPositionEntity */
/**
*
@Title: Entity
@Description: 奖品详情
@author onlineGenerator
@date 2016-11-09 18:13:23
@version V1.0
* 兑奖单实体
@author wolv
*/
@interface TOAwardEntity : JSONModel
@interface TOPrizeBillEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.util.Date
*
*
*
*/
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 取得java.util.Date
*
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *billnumber;
/**
* 方法: 取得java.lang.Integer
*
*
* 取值: TOPRIZEBILLENTITYSTATE_REQUESTED, TOPRIZEBILLENTITYSTATE_SHIPPED, TOPRIZEBILLENTITYSTATE_DONE,
*/
@property (nonatomic, assign) NSInteger remainTotal;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.math.BigDecimal
*
*
*
*/
@property (nonatomic, strong) NSNumber *drawRate;
@property (nonatomic, copy) NSString *receiver;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *type;
@property (nonatomic, copy) NSString *mobilephone;
/**
* 方法: 取得java.math.BigDecimal
*
*
*
*/
@property (nonatomic, strong) NSNumber *number;
@property (nonatomic, copy) NSString *receiveAddress;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *fdescription;
@property (nonatomic, copy) NSString *employee;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TOAwardEntity */
@property (nonatomic, copy) NSString *logisticsCompany;
/**
*
*
*
*/
@property (nonatomic, copy) NSString *trackingNumber;
@end /* interface TOPrizeBillEntity */
/**
* @Title: Entity
@Description: 订单
@author onlineGenerator
@date 2016-05-06 12:53:09
@version V1.0
* 奖品
@author wolv
*/
@interface TOOrderEntity : JSONModel
@interface TOPrizeEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *picture;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.util.Date
*
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *orderNumber;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.util.Date
*
*
*
*/
@property (nonatomic, copy) NSString *orderTime;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*
*/
@property (nonatomic, copy) NSString *guideId;
@property (nonatomic, copy) NSString *updateDate;
@end /* interface TOPrizeEntity */
/**
* 方法: 取得java.lang.String
*
*
* 积分变更记录
@author wolv
*/
@property (nonatomic, copy) NSString *orderState;
@interface TOScoreRecordEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *consumerId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsNum;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *orderPrice;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *receiverName;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *receiverMobile;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *receiverAddress;
@property (nonatomic, copy) NSString *employeeId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *isBill;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *billType;
@property (nonatomic, assign) double score;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *billTitle;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *payType;
@property (nonatomic, copy) NSString *sourceId;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *consumerName;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *guideName;
@property (nonatomic, copy) NSString *sourceType;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *resellerName;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *oldPrice;
@end /* interface TOOrderEntity */
@property (nonatomic, copy) NSString *sourceReason;
@end /* interface TOScoreRecordEntity */
/**
* @Title: Entity
@Description: 订油单的促销事件记录
@Description: t_o_shopcart
@author onlineGenerator
@date 2016-10-19 17:43:12
@date 2016-05-13 14:26:57
@version V1.0
*/
@interface TOOrderPromotionEntity : JSONModel
@interface TOShopcartEntity : JSONModel
/**
* 方法: 主键
* 商品详情
*
*
*/
@property (nonatomic, strong) VOResellerGoodsEntity *goods;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 创建人名称
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 创建人登录名称
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 创建日期
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 更新人名称
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 更新人登录名称
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 更新日期
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 所属部门
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *goodsId;
/**
* 方法: 商品标识
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *goodsId;
@property (nonatomic, assign) NSInteger goodsNum;
/**
* 方法: 商品代码
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsCode;
@property (nonatomic, copy) NSString *consumerId;
/**
* 方法: 商品名称
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsName;
@property (nonatomic, copy) NSString *resellerId;
/**
* 方法: 促销商品数量
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *promotionNumber;
@property (nonatomic, strong) NSNumber *costPrice;
@end /* interface TOShopcartEntity */
/**
* 方法: 促销金额
*
*
* 促销动作。
@author Debenson
@since 0.1
*/
@property (nonatomic, strong) NSNumber *promotionMoney;
@interface Action : JSONModel
@end /* interface Action */
/**
* 方法: 订单号
* (no documentation provided)
*/
@interface IdEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *orderNumber;
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */
/**
* 方法: 折扣率
* UUID + CODE + NAME
@author Debenson
@since 0.1
*/
@interface UCN : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, strong) NSNumber *discountRate;
@property (nonatomic, copy) NSString *uuid;
/**
* 方法: 抽奖红包
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *lotteryPackage;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 微信卡号
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *wxcardNumber;
@property (nonatomic, copy) NSString *name;
@end /* interface UCN */
/**
* 方法: 微信卡券面额
* @Title: Entity
@Description: t_o_shipping_addr
@author onlineGenerator
@date 2016-05-14 16:14:15
@version V1.0
*/
@interface TOShippingAddrEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *wxcardDenomation;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 微信卡券实际减免
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *wxcardRealDeduction;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 京东E卡面额
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *JDEcardDenomation;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 红包面额
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *redPackageNumber;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 红包次数
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *redPackageCount;
@property (nonatomic, copy) NSString *miblephone;
/**
* 方法: 取得优先级
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) NSInteger prority;
@end /* interface TOOrderPromotionEntity */
@property (nonatomic, copy) NSString *province;
/**
* 兑奖单奖品明细
@author wolv
* 方法: 取得java.lang.String
*
*
*/
@interface TOPrizeBillDetailsEntity : JSONModel
@property (nonatomic, copy) NSString *city;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *country;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *bill;
@property (nonatomic, copy) NSString *address;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *prize;
@end /* interface TOPrizeBillDetailsEntity */
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */
/**
* 奖品
* @Title: Entity
@Description: 场景
@author onlineGenerator
@date 2016-05-05 18:39:39
@version V1.0
@author wolv
*/
@interface TOPrizeEntity : JSONModel
@interface TOSceneEntity : JSONModel
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *picture;
@property (nonatomic, copy) NSString *sceneCode;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *name;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *pricure;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateName;
@property (nonatomic, copy) NSString *category;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
@property (nonatomic, copy) NSString *style;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */
/**
* 兑奖单奖品明细
@author wolv
*/
@interface TOPrizeBillDetailsEntity : JSONModel
/**
*
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *fid;
/**
*
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *bill;
/**
*
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
@end /* interface TOPrizeEntity */
@property (nonatomic, copy) NSString *prize;
@end /* interface TOPrizeBillDetailsEntity */
/**
* 积分变更记录
* @Title: Entity
@Description: 订油单的促销事件记录
@author onlineGenerator
@date 2016-10-19 17:43:12
@version V1.0
@author wolv
*/
@interface TOScoreRecordEntity : JSONModel
@interface TOOrderPromotionEntity : JSONModel
/**
*
* 方法: 主键
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
*
* 方法: 创建人名称
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *createName;
/**
*
* 方法: 创建人登录名称
*
*
*/
@property (nonatomic, copy) NSString *employeeId;
@property (nonatomic, copy) NSString *createBy;
/**
*
* 方法: 创建日期
*
*
*/
@property (nonatomic, assign) double score;
@property (nonatomic, copy) NSString *createDate;
/**
*
* 方法: 更新人名称
*
*
*/
@property (nonatomic, copy) NSString *sourceId;
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 更新人登录名称
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 更新日期
*
*
*/
@property (nonatomic, copy) NSString *sourceType;
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 所属部门
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 商品标识
*
*
*/
@property (nonatomic, copy) NSString *sourceReason;
@end /* interface TOScoreRecordEntity */
@property (nonatomic, copy) NSString *goodsId;
/**
* @Title: Entity
@Description: t_o_shopcart
@author onlineGenerator
@date 2016-05-13 14:26:57
@version V1.0
* 方法: 商品代码
*
*
*/
@interface TOShopcartEntity : JSONModel
@property (nonatomic, copy) NSString *goodsCode;
/**
* 商品详情
* 方法: 商品名称
*
*
*/
@property (nonatomic, strong) VOResellerGoodsEntity *goods;
@property (nonatomic, copy) NSString *goodsName;
/**
* 方法: 取得java.lang.String
* 方法: 促销商品数量
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, strong) NSNumber *promotionNumber;
/**
* 方法: 取得java.lang.String
* 方法: 促销金额
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, strong) NSNumber *promotionMoney;
/**
* 方法: 取得java.lang.String
* 方法: 订单号
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *orderNumber;
/**
* 方法: 取得java.util.Date
* 方法: 折扣率
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, strong) NSNumber *discountRate;
/**
* 方法: 取得java.lang.String
* 方法: 抽奖红包
*
*
*/
@property (nonatomic, copy) NSString *updateName;
@property (nonatomic, copy) NSString *lotteryPackage;
/**
* 方法: 取得java.lang.String
* 方法: 微信卡号
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
@property (nonatomic, copy) NSString *wxcardNumber;
/**
* 方法: 取得java.util.Date
* 方法: 微信卡券面额
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
@property (nonatomic, copy) NSString *wxcardDenomation;
/**
* 方法: 取得java.lang.String
* 方法: 微信卡券实际减免
*
*
*/
@property (nonatomic, copy) NSString *goodsId;
@property (nonatomic, copy) NSString *wxcardRealDeduction;
/**
* 方法: 取得java.lang.Integer
* 方法: 京东E卡面额
*
*
*/
@property (nonatomic, assign) NSInteger goodsNum;
@property (nonatomic, strong) NSNumber *JDEcardDenomation;
/**
* 方法: 取得java.lang.String
* 方法: 红包面额
*
*
*/
@property (nonatomic, copy) NSString *consumerId;
@property (nonatomic, strong) NSNumber *redPackageNumber;
/**
* 方法: 取得java.lang.String
* 方法: 红包次数
*
*
*/
@property (nonatomic, copy) NSString *resellerId;
@property (nonatomic, strong) NSNumber *redPackageCount;
/**
* 方法: 取得java.lang.String
* 方法: 取得优先级
*
*
*/
@property (nonatomic, strong) NSNumber *costPrice;
@end /* interface TOShopcartEntity */
@property (nonatomic, assign) NSInteger prority;
@end /* interface TOOrderPromotionEntity */
/**
* 促销动作。
@author Debenson
@since 0.1
*/
@interface Action : JSONModel
@end /* interface Action */
* @Title: Entity
@Description: 订单
@author onlineGenerator
@date 2016-05-06 12:53:09
@version V1.0
/**
* (no documentation provided)
*/
@interface IdEntity : JSONModel
@interface TOOrderEntity : JSONModel
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@end /* interface IdEntity */
/**
* UUID + CODE + NAME
@author Debenson
@since 0.1
*/
@interface UCN : JSONModel
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *uuid;
@property (nonatomic, copy) NSString *createName;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *createBy;
/**
* (no documentation provided)
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *name;
@end /* interface UCN */
@property (nonatomic, copy) NSString *createDate;
/**
* @Title: Entity
@Description: t_o_shipping_addr
@author onlineGenerator
@date 2016-05-14 16:14:15
@version V1.0
* 方法: 取得java.lang.String
*
*
*/
@interface TOShippingAddrEntity : JSONModel
@property (nonatomic, copy) NSString *updateName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *updateBy;
/**
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *updateDate;
/**
* 方法: 取得java.lang.String
*
......@@ -2527,220 +2592,222 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *orderNumber;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *miblephone;
@property (nonatomic, copy) NSString *orderTime;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *province;
@property (nonatomic, copy) NSString *guideId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *city;
@property (nonatomic, copy) NSString *orderState;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *country;
@property (nonatomic, copy) NSString *consumerId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *address;
@property (nonatomic, copy) NSString *goodsNum;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *consumerId;
@end /* interface TOShippingAddrEntity */
/**
* @Title: Entity
@Description: 场景
@author onlineGenerator
@date 2016-05-05 18:39:39
@version V1.0
*/
@interface TOSceneEntity : JSONModel
@property (nonatomic, strong) NSNumber *orderPrice;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *receiverName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sceneCode;
@property (nonatomic, copy) NSString *receiverMobile;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *receiverAddress;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *pricure;
@property (nonatomic, copy) NSString *isBill;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *category;
@property (nonatomic, copy) NSString *billType;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *style;
@property (nonatomic, copy) NSString *billTitle;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *space;
@end /* interface TOSceneEntity */
@property (nonatomic, copy) NSString *payType;
/**
* 兑奖单实体
@author wolv
* (no documentation provided)
*
*
*/
@interface TOPrizeBillEntity : JSONModel
@property (nonatomic, copy) NSString *consumerName;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *guideName;
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *resellerName;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *oldPrice;
@end /* interface TOOrderEntity */
/**
*
@Title: Entity
@Description: 奖品详情
@author onlineGenerator
@date 2016-11-09 18:13:23
@version V1.0
*/
@property (nonatomic, copy) NSString *orderNumber;
@interface TOAwardEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
/**
*
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *createDate;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateName;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
/**
*
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
/**
*
*
*
*/
@property (nonatomic, copy) NSString *billnumber;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
*
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *receiver;
@property (nonatomic, assign) NSInteger remainTotal;
/**
*
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *mobilephone;
@property (nonatomic, strong) NSNumber *drawRate;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *receiveAddress;
@property (nonatomic, copy) NSString *type;
/**
*
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *employee;
@property (nonatomic, strong) NSNumber *number;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *logisticsCompany;
@property (nonatomic, copy) NSString *fdescription;
/**
*
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *trackingNumber;
@end /* interface TOPrizeBillEntity */
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TOAwardEntity */
/**
* @Title: Entity
@Description: 经销商员工职位
@Description: 商品标签分类
@author onlineGenerator
@date 2016-05-02 17:39:21
@date 2016-05-05 16:57:27
@version V1.0
*/
@interface TOPositionEntity : JSONModel
@interface TOGoodsLabelCategoryEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
......@@ -2752,51 +2819,45 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *sysOrgCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *commission;
@property (nonatomic, copy) NSString *sysCompanyCode;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *lowestDiscount;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *resellerCode;
@end /* interface TOPositionEntity */
@property (nonatomic, copy) NSString *name;
@end /* interface TOGoodsLabelCategoryEntity */
/**
* @Title: Entity
@Description: 订单详情
@Description: 商品分类
@author onlineGenerator
@date 2016-05-06 12:53:09
@date 2016-05-10 10:17:53
@version V1.0
*/
@interface TOOrderdetailEntity : JSONModel
@interface TOGoodsCategoryEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *brandName;
@property (nonatomic, copy) NSString *upperName;
/**
* 方法: 取得java.lang.String
*
......@@ -2808,556 +2869,527 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *goodsId;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsCode;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsName;
@property (nonatomic, copy) NSString *upperId;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *goodsCover;
@property (nonatomic, assign) NSInteger level;
@end /* interface TOGoodsCategoryEntity */
/**
* 方法: 取得java.lang.String
*
*
* 经销商和商品关系表。
@author Debenson
@since 0.1
*/
@property (nonatomic, copy) NSString *goodsSpec;
@interface VOResellerGoodsEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsBrand;
@property (nonatomic, copy) NSString *fid;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *goodsNum;
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, strong) NSNumber *goodsPrice;
@property (nonatomic, copy) NSString *onlineTime;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *goodsTotalPrice;
@property (nonatomic, copy) NSString *company;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *orderId;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *goodsUnit;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *remark;
@end /* interface TOOrderdetailEntity */
/**
* @Title: Entity
@Description: 抽奖记录
@author onlineGenerator
@date 2016-11-09 18:13:23
@version V1.0
*/
@interface TODrawEntity : JSONModel
@property (nonatomic, copy) NSString *number;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *categoryId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *brandId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *keyword;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, strong) NSNumber *guidePrice;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *updateName;
@property (nonatomic, strong) NSNumber *tagPrice;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
@property (nonatomic, strong) NSNumber *costPrice;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, assign) NSInteger inv;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *drawDate;
@property (nonatomic, copy) NSString *detailedIntro;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.lang.Double
*
*
*/
@property (nonatomic, copy) NSString *winnerId;
@property (nonatomic, assign) double weight;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *awardId;
@property (nonatomic, copy) NSString *unit;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *awardDescription;
@property (nonatomic, copy) NSString *productProfile;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *orderNumber;
@property (nonatomic, copy) NSString *power;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, copy) NSString *colorTemperature;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *lotteryId;
@end /* interface TODrawEntity */
/**
* @Title: Entity
@Description: 京东E卡
@author onlineGenerator
@date 2016-10-18 16:34:26
@version V1.0
*/
@interface TOJingdongEcardEntity : JSONModel
@property (nonatomic, copy) NSString *spec;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *function;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *material;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *lightSource;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *goodsStyle;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateName;
@property (nonatomic, copy) NSString *series;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateBy;
@property (nonatomic, copy) NSString *area;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *updateDate;
@property (nonatomic, copy) NSString *size;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *space;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *cardNumber;
@property (nonatomic, copy) NSString *installMethod;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *cardPassword;
@property (nonatomic, copy) NSString *lightNumber;
/**
* 方法: 取得java.lang.Integer
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, assign) NSInteger denomation;
@property (nonatomic, copy) NSString *pictures;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, copy) NSString *barcode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *guideId;
@property (nonatomic, copy) NSString *resellerId;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *orderNumber;
@property (nonatomic, copy) NSString *categoryName;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *orderReceiptUrl;
@end /* interface TOJingdongEcardEntity */
@property (nonatomic, copy) NSString *brandName;
@end /* interface VOResellerGoodsEntity */
/**
* @Title: Entity
@Description: 商品标签
@Description: t_o_goods
@author onlineGenerator
@date 2016-05-05 17:18:15
@date 2016-05-12 15:44:01
@version V1.0
*/
@interface TOGoodsLabelEntity : JSONModel
@interface TOGoodsEntity : JSONModel
/**
* (no documentation provided)
*
*
*/
@property (nonatomic, strong) TOGoodsLabelCategoryEntity *category;
@property (nonatomic, assign) NSInteger resellerInv;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, strong) NSNumber *resellerTagPrice;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *resellerState;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *sysCompanyCode;
@property (nonatomic, copy) NSString *categoryName;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *brandName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *categoryId;
@end /* interface TOGoodsLabelEntity */
@property (nonatomic, copy) NSString *fid;
/**
* @Title: Entity
@Description: 商品品牌
@author onlineGenerator
@date 2016-05-05 16:14:51
@version V1.0
* 方法: 取得java.util.Date
*
*
*/
@interface TOGoodsBrandEntity : JSONModel
@property (nonatomic, copy) NSString *createDate;
/**
* 方法: 取得java.util.Date
*
*
*/
@property (nonatomic, copy) NSString *onlineTime;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *company;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *code;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *name;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *number;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *categoryId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysCompanyCode;
@property (nonatomic, copy) NSString *brandId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *keyword;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *guidePrice;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *tagPrice;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *costPrice;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *state;
/**
* 方法: 取得java.lang.Integer
*
*
*/
@property (nonatomic, copy) NSString *state;
@property (nonatomic, assign) NSInteger inv;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *logo;
@property (nonatomic, copy) NSString *detailedIntro;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.lang.Double
*
*
*/
@property (nonatomic, copy) NSString *fdescription;
@end /* interface TOGoodsBrandEntity */
/**
* (no documentation provided)
*/
@interface TOGoodsForResellerEntity : JSONModel
@property (nonatomic, assign) double weight;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *unit;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *resellerId;
@property (nonatomic, copy) NSString *productProfile;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) TOGoodsEntity *goods;
@property (nonatomic, copy) NSString *power;
/**
* (no documentation provided)
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *path;
@end /* interface TOGoodsForResellerEntity */
/**
* @Title: Entity
@Description: 客户
@author onlineGenerator
@date 2016-05-08 18:08:58
@version V1.0
*/
@interface TOConsumerEntity : JSONModel
@property (nonatomic, copy) NSString *colorTemperature;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *fid;
@property (nonatomic, copy) NSString *spec;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createName;
@property (nonatomic, copy) NSString *function;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
@property (nonatomic, copy) NSString *material;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *lightSource;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *goodsStyle;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *series;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *mobile;
@property (nonatomic, copy) NSString *area;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *province;
@property (nonatomic, copy) NSString *size;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *city;
@property (nonatomic, copy) NSString *space;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *country;
@property (nonatomic, copy) NSString *installMethod;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *address;
@property (nonatomic, copy) NSString *lightNumber;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *picture;
@property (nonatomic, copy) NSString *pictures;
/**
* 方法: 取得java.util.Date
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *lastVisitedTime;
@property (nonatomic, copy) NSString *barcode;
/**
* 方法: 取得java.lang.String
*
* (no documentation provided)
* @see TOGoodsForResellerEntity
*
*/
@property (nonatomic, copy) NSString *company;
@end /* interface TOConsumerEntity */
@property (nonatomic, strong) NSArray<TOGoodsForResellerEntity> *goodsResellerList;
@end /* interface TOGoodsEntity */
/**
*
@Title: Entity
@Description: 提现申请
* @Title: Entity
@Description: 导购分成表
@author onlineGenerator
@date 2016-08-24 09:40:02
@date 2016-05-16 16:15:27
@version V1.0
*/
@interface TOApplyBillEntity : JSONModel
@interface TOCommissionHistEntity : JSONModel
/**
* 方法: 取得java.lang.String
*
......@@ -3370,12 +3402,6 @@ extern NSString * const SORTDIRECTION_DESC;
*
*/
@property (nonatomic, copy) NSString *createName;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *createBy;
/**
* 方法: 取得java.util.Date
*
......@@ -3405,162 +3431,170 @@ extern NSString * const SORTDIRECTION_DESC;
*
*
*/
@property (nonatomic, copy) NSString *sysOrgCode;
@property (nonatomic, copy) NSString *resellerCode;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *billNumber;
@property (nonatomic, copy) NSString *employeeId;
/**
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *guideId;
@property (nonatomic, copy) NSString *orderId;
/**
* 方法: 取得java.lang.String
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, copy) NSString *guideName;
@property (nonatomic, strong) NSNumber *amount;
/**
* 方法: 取得java.math.BigDecimal
*
*
*/
@property (nonatomic, strong) NSNumber *applyMoney;
@property (nonatomic, strong) NSNumber *afteramount;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 取得java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *beforeMoney;
@property (nonatomic, copy) NSString *remark;
/**
* 方法: 取得java.math.BigDecimal
* 方法: 设置java.lang.String
*
*
*/
@property (nonatomic, strong) NSNumber *afterMoney;
@property (nonatomic, copy) NSString *orderNumber;
/**
* 方法: 取得java.lang.String
* (no documentation provided)
*
*
*/
@property (nonatomic, copy) NSString *billStates;
@end /* interface TOApplyBillEntity */
@property (nonatomic, copy) NSString *employeeName;
/**
* 方法: 设置java.lang.String
*
*
*/
@property (nonatomic, copy) NSString *state;
@end /* interface TOCommissionHistEntity */
/**
* 学习任务查询条件。
@author thor
* 商品分享返回数据。
@author Debenson
@since 0.1
*/
@interface StudyTaskCondition : JSONModel
@interface RsShareResponse : JSONModel
/**
* (no documentation provided)
* 分享记录标识
*
*
*/
@property (nonatomic, copy) NSString *typeEquals;
@property (nonatomic, copy) NSString *shareId;
/**
* (no documentation provided)
* 分享页面链接
*
*
*/
@property (nonatomic, copy) NSString *stateEquals;
@property (nonatomic, copy) NSString *url;
@end /* interface RsShareResponse */
/**
* (no documentation provided)
* @author Debenson
@since 0.1
*/
@interface SaveShoppingCartRequest : JSONModel
/**
* 消费者标识
*
*
*/
@property (nonatomic, copy) NSString *titleLike;
@property (nonatomic, copy) NSString *consumerId;
/**
* (no documentation provided)
* 商品标识
*
*
*/
@property (nonatomic, copy) NSString *employeeIdEquals;
@property (nonatomic, copy) NSString *goodsId;
/**
* (no documentation provided)
* 商品数量,>0表示添加, <0表示减少
*
*
*/
@property (nonatomic, strong) DataPage *page;
@end /* interface StudyTaskCondition */
@property (nonatomic, copy) NSString *count;
@end /* interface SaveShoppingCartRequest */
/**
* @author Debenson
* @author Administrator
@since 0.1
*/
@interface DeleteCartRequest : JSONModel
@interface RsShippingAddrEntity : JSONModel
/**
* 购物车标识列表
* @see NSString
* (no documentation provided)
* @see TOShippingAddrEntity
*
*/
@property (nonatomic, strong) NSArray<NSString *> *cartIds;
@end /* interface DeleteCartRequest */
@property (nonatomic, strong) NSArray<TOShippingAddrEntity> *list;
@end /* interface RsShippingAddrEntity */
/**
* 积分详情
@author wolv
* @author Administrator
@since 0.1
*/
@interface RsScoreDetails : JSONModel
/**
*
*
*
*/
@property (nonatomic, assign) double currentScore;
@interface SceneCondition : JSONModel
/**
*
* 查询条件:风格
*
*
*/
@property (nonatomic, assign) NSInteger quarterlyRanking;
@property (nonatomic, copy) NSString *styleEquals;
/**
*
* 查询条件:空间
*
*
*/
@property (nonatomic, assign) NSInteger annualRanking;
@property (nonatomic, copy) NSString *spaceEquals;
/**
* (no documentation provided)
* @see TOScoreRecordEntity
*
*
*/
@property (nonatomic, strong) NSArray<TOScoreRecordEntity> *recoreds;
@end /* interface RsScoreDetails */
@property (nonatomic, strong) DataPage *page;
@end /* interface SceneCondition */
/**
* 促销计算结果。
* 兑奖单查询返回包装对象
@author wolv
@author Debenson
@since 0.1
*/
@interface RsActionResult : JSONModel
@interface RsPrizeBillResponse : JSONModel
/**
* 结果集合,空集合表示没有促销。
* @see Action
* (no documentation provided)
* @see RsPrizeBill
*
*/
@property (nonatomic, strong) NSArray<Action> *actions;
@end /* interface RsActionResult */
@property (nonatomic, strong) NSArray<RsPrizeBill> *bills;
@end /* interface RsPrizeBillResponse */
......@@ -4162,24 +4196,6 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* 查询抽奖结果分页
@author nevermore
@since 0.1
*/
@interface RsLotteryResponse : PageRows
/**
* (no documentation provided)
* @see RsAwardDraw
*
*/
@property (nonatomic, strong) NSArray<RsAwardDraw> *list;
@end /* interface RsLotteryResponse */
/**
* 用户-组织机构 实体
<p/>
......@@ -4206,6 +4222,24 @@ extern NSString * const SORTDIRECTION_DESC;
/**
* 查询抽奖结果分页
@author nevermore
@since 0.1
*/
@interface RsLotteryResponse : PageRows
/**
* (no documentation provided)
* @see RsAwardDraw
*
*/
@property (nonatomic, strong) NSArray<RsAwardDraw> *list;
@end /* interface RsLotteryResponse */
/**
* 奖品查询结果
......
......@@ -330,10 +330,8 @@
@end
@implementation SceneCondition
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize page;
@implementation RsActionResult
@synthesize actions;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -355,8 +353,11 @@
@end
@implementation RsShippingAddrEntity
@synthesize list;
@implementation RsScoreDetails
@synthesize currentScore;
@synthesize quarterlyRanking;
@synthesize annualRanking;
@synthesize recoreds;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -366,10 +367,8 @@
@end
@implementation SaveShoppingCartRequest
@synthesize consumerId;
@synthesize goodsId;
@synthesize count;
@implementation DeleteCartRequest
@synthesize cartIds;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -391,9 +390,12 @@
@end
@implementation RsShareResponse
@synthesize shareId;
@synthesize url;
@implementation StudyTaskCondition
@synthesize typeEquals;
@synthesize stateEquals;
@synthesize titleLike;
@synthesize employeeIdEquals;
@synthesize page;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -403,22 +405,22 @@
@end
@implementation TOCommissionHistEntity
@implementation TOApplyBillEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize resellerCode;
@synthesize employeeId;
@synthesize orderId;
@synthesize amount;
@synthesize afteramount;
@synthesize remark;
@synthesize orderNumber;
@synthesize employeeName;
@synthesize state;
@synthesize sysOrgCode;
@synthesize billNumber;
@synthesize guideId;
@synthesize guideName;
@synthesize applyMoney;
@synthesize beforeMoney;
@synthesize afterMoney;
@synthesize billStates;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -436,47 +438,21 @@
@end
@implementation TOGoodsEntity
@synthesize resellerInv;
@synthesize resellerTagPrice;
@synthesize resellerState;
@synthesize categoryName;
@synthesize brandName;
@implementation TOConsumerEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize onlineTime;
@synthesize company;
@synthesize code;
@synthesize sysOrgCode;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
@synthesize goodsResellerList;
@synthesize mobile;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
@synthesize picture;
@synthesize lastVisitedTime;
@synthesize company;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -494,44 +470,11 @@
@end
@implementation VOResellerGoodsEntity
@implementation TOGoodsForResellerEntity
@synthesize fid;
@synthesize createDate;
@synthesize onlineTime;
@synthesize company;
@synthesize code;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
@synthesize resellerId;
@synthesize categoryName;
@synthesize brandName;
@synthesize goods;
@synthesize path;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -549,13 +492,18 @@
@end
@implementation TOGoodsCategoryEntity
@synthesize upperName;
@implementation TOGoodsBrandEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize code;
@synthesize name;
@synthesize upperId;
@synthesize level;
@synthesize state;
@synthesize logo;
@synthesize fdescription;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -566,6 +514,7 @@
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"description": @"fdescription",
@"id": @"fid",
}];
}
......@@ -573,12 +522,13 @@
@end
@implementation TOGoodsLabelCategoryEntity
@implementation TOGoodsLabelEntity
@synthesize category;
@synthesize fid;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize code;
@synthesize name;
@synthesize categoryId;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -596,7 +546,7 @@
@end
@implementation TOAwardEntity
@implementation TOJingdongEcardEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
......@@ -605,12 +555,13 @@
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize remainTotal;
@synthesize drawRate;
@synthesize type;
@synthesize number;
@synthesize fdescription;
@synthesize lotteryId;
@synthesize cardNumber;
@synthesize cardPassword;
@synthesize denomation;
@synthesize state;
@synthesize guideId;
@synthesize orderNumber;
@synthesize orderReceiptUrl;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -621,7 +572,6 @@
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"description": @"fdescription",
@"id": @"fid",
}];
}
......@@ -629,7 +579,7 @@
@end
@implementation TOOrderEntity
@implementation TODrawEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
......@@ -638,24 +588,13 @@
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize drawDate;
@synthesize winnerId;
@synthesize awardId;
@synthesize awardDescription;
@synthesize orderNumber;
@synthesize orderTime;
@synthesize guideId;
@synthesize orderState;
@synthesize consumerId;
@synthesize goodsNum;
@synthesize orderPrice;
@synthesize receiverName;
@synthesize receiverMobile;
@synthesize receiverAddress;
@synthesize isBill;
@synthesize billType;
@synthesize billTitle;
@synthesize payType;
@synthesize consumerName;
@synthesize guideName;
@synthesize resellerName;
@synthesize oldPrice;
@synthesize state;
@synthesize lotteryId;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -673,30 +612,21 @@
@end
@implementation TOOrderPromotionEntity
@implementation TOOrderdetailEntity
@synthesize brandName;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize goodsId;
@synthesize goodsCode;
@synthesize goodsName;
@synthesize promotionNumber;
@synthesize promotionMoney;
@synthesize orderNumber;
@synthesize discountRate;
@synthesize lotteryPackage;
@synthesize wxcardNumber;
@synthesize wxcardDenomation;
@synthesize wxcardRealDeduction;
@synthesize JDEcardDenomation;
@synthesize redPackageNumber;
@synthesize redPackageCount;
@synthesize prority;
@synthesize goodsCover;
@synthesize goodsSpec;
@synthesize goodsBrand;
@synthesize goodsNum;
@synthesize goodsPrice;
@synthesize goodsTotalPrice;
@synthesize orderId;
@synthesize goodsUnit;
@synthesize remark;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -714,10 +644,46 @@
@end
@implementation TOPrizeBillDetailsEntity
@implementation TOPositionEntity
@synthesize fid;
@synthesize bill;
@synthesize prize;
@synthesize code;
@synthesize name;
@synthesize commission;
@synthesize lowestDiscount;
@synthesize resellerCode;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
return YES;
}
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"id": @"fid",
}];
}
@end
@implementation TOPrizeBillEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize billnumber;
@synthesize state;
@synthesize receiver;
@synthesize mobilephone;
@synthesize receiveAddress;
@synthesize employee;
@synthesize logisticsCompany;
@synthesize trackingNumber;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -918,47 +884,15 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOPrizeBillEntity
@synthesize fid;
@synthesize orderNumber;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize billnumber;
@synthesize state;
@synthesize receiver;
@synthesize mobilephone;
@synthesize receiveAddress;
@synthesize employee;
@synthesize logisticsCompany;
@synthesize trackingNumber;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
return YES;
}
NSString * const TOPRIZEBILLENTITYSTATE_REQUESTED = @"requested";
NSString * const TOPRIZEBILLENTITYSTATE_SHIPPED = @"shipped";
NSString * const TOPRIZEBILLENTITYSTATE_DONE = @"done";
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"id": @"fid",
}];
}
@end
@implementation TOPositionEntity
@implementation TOPrizeBillDetailsEntity
@synthesize fid;
@synthesize code;
@synthesize name;
@synthesize commission;
@synthesize lowestDiscount;
@synthesize resellerCode;
@synthesize bill;
@synthesize prize;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -976,21 +910,30 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOOrderdetailEntity
@synthesize brandName;
@implementation TOOrderPromotionEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize goodsId;
@synthesize goodsCode;
@synthesize goodsName;
@synthesize goodsCover;
@synthesize goodsSpec;
@synthesize goodsBrand;
@synthesize goodsNum;
@synthesize goodsPrice;
@synthesize goodsTotalPrice;
@synthesize orderId;
@synthesize goodsUnit;
@synthesize remark;
@synthesize promotionNumber;
@synthesize promotionMoney;
@synthesize orderNumber;
@synthesize discountRate;
@synthesize lotteryPackage;
@synthesize wxcardNumber;
@synthesize wxcardDenomation;
@synthesize wxcardRealDeduction;
@synthesize JDEcardDenomation;
@synthesize redPackageNumber;
@synthesize redPackageCount;
@synthesize prority;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1008,7 +951,7 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TODrawEntity
@implementation TOOrderEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
......@@ -1017,13 +960,24 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize drawDate;
@synthesize winnerId;
@synthesize awardId;
@synthesize awardDescription;
@synthesize orderNumber;
@synthesize state;
@synthesize lotteryId;
@synthesize orderTime;
@synthesize guideId;
@synthesize orderState;
@synthesize consumerId;
@synthesize goodsNum;
@synthesize orderPrice;
@synthesize receiverName;
@synthesize receiverMobile;
@synthesize receiverAddress;
@synthesize isBill;
@synthesize billType;
@synthesize billTitle;
@synthesize payType;
@synthesize consumerName;
@synthesize guideName;
@synthesize resellerName;
@synthesize oldPrice;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1041,7 +995,7 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOJingdongEcardEntity
@implementation TOAwardEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
......@@ -1050,13 +1004,12 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize cardNumber;
@synthesize cardPassword;
@synthesize denomation;
@synthesize state;
@synthesize guideId;
@synthesize orderNumber;
@synthesize orderReceiptUrl;
@synthesize remainTotal;
@synthesize drawRate;
@synthesize type;
@synthesize number;
@synthesize fdescription;
@synthesize lotteryId;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1067,6 +1020,7 @@ NSString * const SORTDIRECTION_DESC = @"desc";
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"description": @"fdescription",
@"id": @"fid",
}];
}
......@@ -1074,13 +1028,12 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOGoodsLabelEntity
@synthesize category;
@implementation TOGoodsLabelCategoryEntity
@synthesize fid;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize code;
@synthesize name;
@synthesize categoryId;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1098,18 +1051,13 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOGoodsBrandEntity
@implementation TOGoodsCategoryEntity
@synthesize upperName;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize code;
@synthesize name;
@synthesize state;
@synthesize logo;
@synthesize fdescription;
@synthesize upperId;
@synthesize level;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1120,7 +1068,6 @@ NSString * const SORTDIRECTION_DESC = @"desc";
+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithDictionary:@{
@"description": @"fdescription",
@"id": @"fid",
}];
}
......@@ -1128,11 +1075,44 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOGoodsForResellerEntity
@implementation VOResellerGoodsEntity
@synthesize fid;
@synthesize createDate;
@synthesize onlineTime;
@synthesize company;
@synthesize code;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
@synthesize resellerId;
@synthesize goods;
@synthesize path;
@synthesize categoryName;
@synthesize brandName;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1150,21 +1130,47 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOConsumerEntity
@implementation TOGoodsEntity
@synthesize resellerInv;
@synthesize resellerTagPrice;
@synthesize resellerState;
@synthesize categoryName;
@synthesize brandName;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize name;
@synthesize mobile;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
@synthesize picture;
@synthesize lastVisitedTime;
@synthesize onlineTime;
@synthesize company;
@synthesize code;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
@synthesize goodsResellerList;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1182,22 +1188,22 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TOApplyBillEntity
@implementation TOCommissionHistEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize billNumber;
@synthesize guideId;
@synthesize guideName;
@synthesize applyMoney;
@synthesize beforeMoney;
@synthesize afterMoney;
@synthesize billStates;
@synthesize resellerCode;
@synthesize employeeId;
@synthesize orderId;
@synthesize amount;
@synthesize afteramount;
@synthesize remark;
@synthesize orderNumber;
@synthesize employeeName;
@synthesize state;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1215,12 +1221,9 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation StudyTaskCondition
@synthesize typeEquals;
@synthesize stateEquals;
@synthesize titleLike;
@synthesize employeeIdEquals;
@synthesize page;
@implementation RsShareResponse
@synthesize shareId;
@synthesize url;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1230,8 +1233,10 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation DeleteCartRequest
@synthesize cartIds;
@implementation SaveShoppingCartRequest
@synthesize consumerId;
@synthesize goodsId;
@synthesize count;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1241,11 +1246,8 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation RsScoreDetails
@synthesize currentScore;
@synthesize quarterlyRanking;
@synthesize annualRanking;
@synthesize recoreds;
@implementation RsShippingAddrEntity
@synthesize list;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1255,8 +1257,21 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation RsActionResult
@synthesize actions;
@implementation SceneCondition
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize page;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
return YES;
}
@end
@implementation RsPrizeBillResponse
@synthesize bills;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1511,8 +1526,9 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation RsLotteryResponse
@synthesize list;
@implementation TSUserOrg
@synthesize tsUser;
@synthesize tsDepart;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......@@ -1522,9 +1538,8 @@ NSString * const SORTDIRECTION_DESC = @"desc";
@end
@implementation TSUserOrg
@synthesize tsUser;
@synthesize tsDepart;
@implementation RsLotteryResponse
@synthesize list;
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment