1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.fdkankan.manage.vo.response;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Data;
- @Data
- public class UserIncrementVo {
- private Long id; //会员权益id
- private String snCode; //相机snCode
- private String incrementStartTime; //购买日期
- private String incrementEndTime; //到期日期
- private String memberLevels;
- private Integer monthQy;
- private Integer validTimeType; // 0年,1月,2日
- private String projectNum;
- private Integer useType;
- private String useTypeStr;
- private String remark;
- public String getUseTypeStr() {
- if(useType == null){
- return "";
- }
- switch (useType){
- case 1 : return "项目实施";
- case 2 : return "客户试用";
- case 3 : return "内部测试";
- case 4 : return "正常销售";
- case 5 : return "渠道推广";
- case 6 : return "其它";
- default: return "";
- }
- }
- }
|