IndentSmsSendLogVO.java 472 B

1234567891011121314151617181920
  1. package com.sqx.modules.errand;
  2. import com.sqx.modules.errand.entity.TbIndentSmsSendLog;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. /**
  7. * 短信发送日志vo
  8. */
  9. @Data
  10. @ApiModel("IndentSmsSendLogVO")
  11. public class IndentSmsSendLogVO extends TbIndentSmsSendLog {
  12. @ApiModelProperty("图片")
  13. private String imgs;
  14. @ApiModelProperty("发送人电话号码")
  15. private String sendFromPhone;
  16. }